迷雾白狐

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2012年1月16日

摘要: Intent it = new Intent(Intent.ACTION_MAIN); it.addCategory(Intent.CATEGORY_HOME); it.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(it); 阅读全文
posted @ 2012-01-16 11:35 迷雾白狐 阅读(815) 评论(0) 推荐(0) 编辑

摘要: /** * 根据手机的分辨率从 dp 的单位 转成为 px(像素) */ public static int dip2px(Context context, float dpValue) { final float scale = context.getResources().getDisplayMetrics().density; return (int) (dpValue * scale + 0.5f); } /** * 根据手机的分辨率从 px(像素) 的单位 转成为 dp ... 阅读全文
posted @ 2012-01-16 10:52 迷雾白狐 阅读(241) 评论(0) 推荐(0) 编辑