私の活動には 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 に答える