次の要件を実行する方法を考え出すのに行き詰まっています。
次のように、2 つのボタンがある単純な画面を作成する必要があります。
画面のその部分はすでに完了しています。
私にとって最も難しいのは、2 つのボタンが押されたときの動作を作成することです。その場合、以下のようなオプション メニューを表示する必要があります。
ボタン 1 を押した場合:
ボタン 2 を押した場合:
メニューのプログラミングはまだ始めていませんが、参考までに、これは画面のレイアウト (ボタンなし) です。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/grayBackgound"
tools:context=".MenuActivity" >
<include android:layout_width="match_parent" layout="@layout/header" />
<include android:layout_width="match_parent" layout="@layout/loggedin_subheader"/>
</LinearLayout>
ヘッダーのレイアウト:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/header"
android:contentDescription="@string/header"
/>
<ImageButton
android:id="@+id/btnClose"
android:src="@drawable/btn_close"
android:contentDescription="@+string/salir"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginLeft="260dp"
/>
</FrameLayout>
サブヘッダーのレイアウトはほぼ同じです。
すべてのボタンのオプション メニューを作成するのに助けが必要です。
前もって感謝します!