android的菜单有三种:
Options Menu
当用户按下menu button按钮时显示的菜单
Context Menu
当用户长久按住屏幕,即被注册显示上下文菜单的视图时显示的菜单
Submenu
当用户按下一个菜单的某个选项时弹出的子菜单
现在演示一个上下文菜单。
main.xml布局文件
android:id="@+id/layout"
android:layout_width="fill_parent" android:layout_height="fill_parent">
android:layout_height="fill_parent">
item.xml布局文件,用来显示listview中的一个单独的控件
android:id="@+id/layout"
android:layout_width="fill_parent" android:layout_height="fill_parent">
android:layout_height="fill_parent"
android:textSize="20dip"
>
在layout下新建一个menu文件夹,在建一个menu.xml布局文件
阅读(1402) | 评论(0) | 转发(0) |