- 博客(2)
- 收藏
- 关注
原创 Android中的menu
在Android中有两种设置menu的方式,第一种是将menu写在XML中然后在Activity中调用,还有一种是直接用代买些在Activity中,废话不多说直接上代码方法一:在res文件夹中直接建一个menu文件夹,再在里面建立一个menu的xml文件如下: xmlns:android="http://schemas.android.com/apk/res/android"> android:title="@string/menu1" android:icon="@drawable/a"/>
2010-12-13 21:58:00 217
原创 Intent的几种用法
下面列出几种Intent的用法显示网页:1 Uri uri = Uri.parse("http://www.google.com");2 Intent it = new Intent(Intent.ACTION_VIEW,uri);3 startActivity(it);显示地图:4 Uri uri = Uri.parse("geo:38.899533,-77.036476");5 Intent it = new Intent
2010-09-21 23:28:00 247
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人