摘要:
TextView和RadioGroup是在同一个LinearLayout中的,控件摆放方式是android:orientation="horizontal",虽然三个控件是水平摆放的,但是TextView和两个RadioButton却不在同一水平线。解决方法:在LinearLayout中添加以下属性:android:gravity="center_vertical" 阅读全文
摘要:
1:代码方式:放到setContentView之前//隐藏标题栏this.requestWindowFeature(Window.FEATURE_NO_TITLE);//隐藏状态栏this.getWindow().setFlags( WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);2:通过配置文件方法:让某个Activity全屏: 阅读全文