工具类
喜之郎_201
我刚刚才开始做项目
展开
-
Android 常用尺寸转换
(1)dp与px转换/*** dp转px*/public static int dp2px(Context context, float dpValue) { final float scale = context.getResources().getDisplayMetrics().density; return (int) (dpValue * scale翻译 2017-04-20 14:26:51 · 410 阅读 · 0 评论 -
在onCreate()即可获取View的宽高
/*** 在onCreate()即可获取View的宽高*/public static int[] getViewMeasure(View view) { int widthMeasureSpec = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED); int heightMeasureSpec转载 2017-04-20 14:29:46 · 194 阅读 · 0 评论 -
ListView中提前测量View尺寸
/*** ListView中提前测量View尺寸,如headerView*/private void measureView(View view) { ViewGroup.LayoutParams p = view.getLayoutParams(); if (p == null) { p = new ViewGroup.LayoutParams(ViewGr转载 2017-04-20 14:30:42 · 363 阅读 · 0 评论 -
手机相关参数获取
/*** 判断设备是否是手机*/public static boolean isPhone(Context context) { TelephonyManager telephony = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE); return telephony.getPho翻译 2017-04-20 14:33:20 · 463 阅读 · 0 评论 -
Android 调用手机拨号,短信
/*** 跳转至拨号界面*/public static void callDial(Context context, String phoneNumber) { context.startActivity(new Intent(Intent.ACTION_DIAL, Uri.parse("tel:" + phoneNumber)));}/*** 拨打电话*/public st翻译 2017-04-20 14:35:34 · 606 阅读 · 0 评论 -
Android 获取手机联系人
/*** 获取手机联系人*/public static List> getAllContactInfo(Context context) { SystemClock.sleep(3000); ArrayList> list = new ArrayList>(); // 1.获取内容解析者 ContentResolver resolver = context.g翻译 2017-04-20 14:36:30 · 2822 阅读 · 0 评论 -
Android网络判断
/*** 打开网络设置界面*/public static void openSetting(Activity activity) { Intent intent = new Intent("/"); ComponentName cm = new ComponentName("com.android.settings", "com.android.set转载 2017-04-20 14:38:52 · 268 阅读 · 0 评论 -
textView 文字显示不同颜色
一下是具体用到的代码:SpannableStringBuilder builder = new SpannableStringBuilder(message+message2);ForegroundColorSpan redSpan = new ForegroundColorSpan(mContext.getResources().getColor(R.color.text_red_col原创 2017-10-11 14:11:44 · 719 阅读 · 0 评论 -
开源项目库汇总
开源项目库汇总:https://www.jianshu.com/p/86541dc33bc4转载 2018-03-20 16:49:02 · 228 阅读 · 0 评论