我的活动中有 ActionBarSherlock 操作栏。它是使用 onCreateOptionsMenu(Menu menu) 方法创建的。如何让这个菜单像操作栏一样可用,并用一些按钮创建普通菜单?
问问题
268 次
1 回答
0
为您的应用程序创建布局。例如,为您的菜单创建一个按钮。您还可以使用图形 UI android eclipse 插件来定位它。
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/testButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:text="@string/testTitle"/>
</RelativeLayout>
在扩展 com.android.Activity 的活动类中,
Button testButton;
testButton = (Button) findViewById(R.id.testButton);
testButton .setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// Code to perform on click of the menu button
}
});
于 2012-07-16T11:59:37.290 回答