Ich arbeite an Popup-Menü in Actionbar. Aber ich bin fest, um genau unten von actionbar anzuzeigen (cut-to-cut). Ich setze zwei Schnappschüsse.Wie Menü Popup genau unterhalb Aktionsleiste anzeigen?
Mein Problem Screenshot:
ich unten von ActionBar genau Popup-Menü möchten, wie unten Screenshot
Korrektur Screenshot:
Mein Code-Schnipsel:
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" tools:context=".MainActivity">
<item android:id="@+id/action_filter"
android:icon="@drawable/ic_filter_white_18dp"
android:title="@string/action_filter"
app:showAsAction="ifRoom" />
<item android:id="@+id/action_label"
android:icon="@drawable/ic_add_circle_outline_white_18dp"
android:title="@string/action_label"
app:showAsAction="ifRoom" />
<item android:id="@+id/action_settings"
android:title="@string/action_settings"
app:showAsAction="never" />
Bitte keine Screenshots oder Links posten. Poste stattdessen deinen Code – Andrew
Ich habe meinen Code in meine Frage eingefügt. – Vasant