2016-07-21 11 views
2

angezeigt werden. In meiner Anwendung habe ich Optionsmenü, das als Standard oben platziert ist. Wenn wir drücken, wird das Menü in diesem Menü geöffnet wird keine Linien dazwischen options.i möchte Linien zwischen dann wie ein Teiler anzeigen.Optionsmenü mit Zeilen zwischen Optionen. Wie ein Trenner zwischen Optionen, die im Menü

Ich versuche, das Thema zu ändern, es funktioniert, aber ich werde nicht eine andere Lösung, denn wenn ich Thema ändern, wird es meine Anwendung total auswirken.

es ist Arbeit in AppTheme nicht in AppTheme.AppCompat.

ich will es ist Arbeit ohne Veränderung in Themen.

Wenn jemand Code möchte, werde ich es posten.

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> 
    <!-- Customize your theme here. --> 
    <item name="colorPrimary">@color/colorPrimary</item> 
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item> 
    <item name="colorAccent">@color/colorAccent</item> 
    <item name="android:showDividers">beginning</item> 
    <item name="android:divider">@color/action_bar_divider</item> 
</style> 
+0

Ich habe hier einige Lösung geschrieben versuchen Sie es. –

+0

ich habe meine antwort aktualisiert check it –

+0

ich akzeptiere die antwort danke es ist möglich die breite der menüleitung zu reduzieren. –

Antwort

2

Es gibt viele Möglichkeiten, dies zu erreichen.

Lösung 1 ==> Sie können wie Gruppe im Menü xml machen unter

<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"> 

<group android:id="@+id/grp1"> 
<item 
    android:id="@+id/navigation_item_1" 
    android:checked="true" 
    android:icon="@drawable/ic_home" 
    android:title="@string/navigation_item_1" /></group> 

<group android:id="@+id/grp2"> 
<item 
    android:id="@+id/navigation_item_2" 
    android:icon="@drawable/ic_home" 
    android:title="@string/navigation_item_2" /></group></menu> 

Lösung 2 ==> Sie benutzerdefinierte Aktion Layout wie unten

<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"> 
<item 
    android:id="@+id/action_cart" 
    android:title="cart" 
    android:actionLayout="@layout/custom_layout" 
    android:icon="@drawable/shape_notification" 
    app:showAsAction="always"/> 

machen

und actionLayout-Datei wie unten

<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="wrap_content" 
android:layout_height="match_parent" 
android:orientation="vertical"> 

<View 
    android:id="@+id/divider" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:background="@drawable/divider"/> 

<TextView 
    android:id="@android:id/text" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:background="?android:attr/selectableItemBackground" 
    android:gravity="center_vertical"   
    android:textAppearance="?attr/textAppearanceListItemSmall"/> 

Lösung 3 ==> können Sie benutzerdefinierte Thema für bestimmte Aktivität

<style name="CustomTheme" parent="android:Theme.Holo.Light"> 
<item name="android:actionBarStyle">@style/ActionBar</item></style> 


<style name="ActionBar"parent="android:style/Widget.Holo.Light.ActionBar"> 
<item name="android:background">@color/action_bar_background</item> 
<item name="android:showDividers">beginning</item> 
<item name="android:divider">@color/action_bar_divider</item></style> 

Lösung 4 ==> Sie können für DropdownlistView benutzerdefinierte Ansicht machen

<style name="PopupMenuListView" parent="@style/Widget.AppCompat.ListView.DropDown"> 
<item name="android:divider">#000000</item> 
<item name="android:dividerHeight">1dp</item> 
</style> 
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> 


<item name="android:dropDownListViewStyle">@style/PopupMenuListView</item></style> 

können Sie diesen Link verweisen add divider in menu item

+0

Ich versuche alle Lösungen, was Sie vorschlagen, aber nichts davon funktioniert immer noch ich bekomme ein Problem. –

+0

Erste zwei Lösungen, die ich bereits versuche, nicht zu arbeiten, wenn wir das Thema ändern, das mein Projekt beeinflußt, will ich AppCompatTheme behalten. –

+0

@BhargaviYamanuri fügen Sie einfach in Ihre Anwendung Thema Anfang @ color/action_bar_divider