android
javasoldiers
这个作者很懒,什么都没留下…
展开
-
android:layout_weight属性使用注意事项
此属性一旦在LinearLayout中被显示使用,则使用此属性的控件android:layout_width(水平平分布局时)或android:layout_height(垂直平分布局时)两个属性其中一个应该指明为0dp。原创 2013-01-01 22:12:57 · 463 阅读 · 0 评论 -
android dialog 两种自定义布局风格
第一种方式; AlertDialog.Builder builder = new AlertDialog.Builder(this); View view = getLayoutInflater().inflate(R.layout.select_dialog,null); builder.setView(view); builder.show(); 常用的此方式,这样采用dialog默认的原创 2013-01-05 18:15:04 · 664 阅读 · 0 评论 -
android动态全屏和取消全屏
取消全屏,显示状态栏 WindowManager.LayoutParams params=getWindow().getAttributes(); params.flags &= (~WindowManager.LayoutParams.FLAG_FULLSCREEN); getWindow().setAttributes(params); getWindow().clearFlags(原创 2013-02-21 13:39:52 · 287 阅读 · 0 评论 -
android通过电源管理控制是否黑屏
// try{ // if(localWakeLock==null){ // localWakeLock = pm.newWakeLock(32, "MyPower");//32是系统的靠近感应PROXIMITY_SCREEN_OFF_WAKE_LOCK // } // }catch(Exception e){ // e.printStackTrace(); // } //原创 2013-02-21 13:47:34 · 666 阅读 · 0 评论 -
android 跳转到call history页面
Intent intent = new Intent(Intent.ACTION_VIEW); intent.setType("vnd.android.cursor.dir/calls"); startActivity(intent);原创 2013-03-22 14:13:53 · 600 阅读 · 0 评论