七、 常用代码
7.1 在当前Activity中启动另外一个Activity
startActivity(new Intent(this,目标Activity.class));
7.2 从当前ContentView从查找控件
(Button)findViewById(R.id.btnAbout)
R.id.btnAbout指控件id。
7.3 获取屏幕宽高
DisplayMetrics dm = new DisplayMetrics();
//获取窗口属性
getWindowManager().getDefaultDisplay().getMetrics(dm);
int screenWidth = dm.widthPixels;//320
int screenHeight = dm.heightPixels;//480
7.4 无标题栏、全屏
//无标题栏
requestWindowFeature(Window.FEATURE_NO_TITLE);
//全屏模式
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
注意在setContentView()之前调用,否则无效。
7.5 注册activity
所有用到的Activity都必须在AndroidManifest.xml中注册,否则会报空指针错误。如:<activity android:name="com.common.TestView">,注意是包名+类名。
本文导航
- 第1页: 首页
- 第2页: 二、 Android系统架构
- 第3页: 三、 Android系统包说明
- 第4页: 四、 Android项目工程说明
- 第5页: 五、 基本控件[/apge]
五、 基本控件
5.1 文本框(TextView)、自动完成(AutoCompleteTextView)
自动完成的效果和代码:http://android.yaohuiji.com/archives/390
5.2 编辑框(EditText)
android:hint 内容为空时提醒的信息,如“请输入”
5.3 下拉列表(Spinner)
android:entries 可以通过在strings.xml中指定string-array来设置选项。
5.4 进度条(ProgressBar)
效果和代码:http://www.eoeandroid.com/viewthread.php?tid=1081
5.5 拖动条(SeekBar)
5.6 评分条(RatingBar)
5.7 按钮(Button)、图片按钮(ImageButton)
5.8 图片框 (ImageView)、画廊(Gallery)
画廊效果:http://android.yaohuiji.com/archives/565
5.9 日期和时间(DatePicker、TimePicker)
5.10 单项选择(RadioGroup、RadioButton)、多项选择(CheckBox)
5.11 表格 (GridView)、列表(ListView)
GridView:http://blog.csdn.net/hellogv/archive/2009/09/18/4567095.aspx
ListView:http://www.cnblogs.com/allin/archive/2010/05/11/1732200.html
5.12 对话框(AlertDialog)、对话框中的进度条(ProgressDialog)
AlertDialog:http://android.yaohuiji.com/archives/655
ProgressDialog:http://aina-hk55hk.javaeye.com/blog/679134
5.13 菜单(Menu)
5.14 提示(Toast)
类似于MessageBox,非模式窗口。如:
Toast.makeText(this, "信息", Toast.LENGTH_SHORT).show();
[page]六、 布局和容器
- 第6页: 七、 常用代码
- 第7页: 八、 Adb命令行
- 第8页: 九、 Apk文件破解
- 第9页: 十、 小技巧
- 第10页: 十一、 Q & A
- 第11页: 十一、 Q & A