Androidアプリのスライディングメニューを作成しようとしています。さて、現時点では私はうまくいっていません。
私はこのようなことをしようとしています:
ボタンAを押すと、オプションビューにAのオプションが表示されます。Bを押すと、同じことが起こります。
手伝って頂けますか?
どうもありがとう。
Androidアプリのスライディングメニューを作成しようとしています。さて、現時点では私はうまくいっていません。
私はこのようなことをしようとしています:
ボタンAを押すと、オプションビューにAのオプションが表示されます。Bを押すと、同じことが起こります。
手伝って頂けますか?
どうもありがとう。
これを参照してください: Android で QuickAction ダイアログを作成する方法: http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/
シンプルなスライド メニュー:
<HorizontalScrollView
android:id="@+id/horizontalScrollView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<LinearLayout
android:id="@+id/linearLayout3"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="25"
android:adjustViewBounds="true"
android:text="A" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="25"
android:adjustViewBounds="true"
android:text="B" />
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="25"
android:adjustViewBounds="true"
android:text="C" />
<Button
android:id="@+id/button4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="25"
android:adjustViewBounds="true"
android:text="D" />
</LinearLayout>
</HorizontalScrollView>
次に、Java コードでこれらのボタンの onclick リスナーを設定します。ポップアップを表示する場合は、Android でポップアップ ウィンドウを作成する方法を参照してください。