米娅的android之旅
android开发群群号:84926730
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: 去掉标题栏:<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar">或者代码里:requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏注意这句一定要写在setContentView()方法的前面,不然会报错的。而且这种有时候会看到程序启动后标题栏闪一下消失的情况。自定义主题去掉标题栏 阅读全文
posted @ 2012-07-20 14:34 程序缘儿 阅读(1643) 评论(0) 推荐(0) 编辑
摘要: EditText et = null;et.setOnFocusChangeListener(new OnFocusChangeListener(){@Overridepublic void onFocusChange(View v, boolean hasFocus) {if(hasFocus){et.setText("");}}});或者:android:selectAllOnFocus="true"这个是获得焦点后选中所有内容 阅读全文
posted @ 2012-07-17 10:01 程序缘儿 阅读(11957) 评论(0) 推荐(0) 编辑
摘要: 打开eclipse-preferences-General->Appearance->Colors and Fonts,打开basic,双击Text Font, 微软雅黑不是@微软雅黑 否则变成横版字体。 阅读全文
posted @ 2012-07-16 16:48 程序缘儿 阅读(707) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页