option menu
首先,好多人在使用选项菜单的过程中发现真机上并没有虚拟机上面的显示的三个点,无法使用菜单,这并不是菜单的问题。Android应用中的菜单默认是看不见的,只有当用户按下手机上的“MENU”键的时候,系统才会显示出菜单。所以在现在主流手机都取消了菜单键的情况下,建议使用ActionBar来代替相应菜单。
接下来我们来实现简单的菜单。首先我们先在要显示的布局文件中建立一个TextView,用来显示相关内容随后再为它绑定一个菜单。
<?xml version="1.0" encoding="UTF-8"?><LinearLayout
android:layout_height=“match_parent”
android:layout_width=“match_parent”
android:orientation=“vertical”
xmlns:android=“http://schemas.android.com/apk/res/android”>
<TextView
android:layout_height=“wrap_content”
android:layout_width=“match_parent”
android:text=“@string/text”
android:textSize=“15pt”
android:id=“@+id/txt”>
之后我们建立菜单。Android提供了两种建立菜单