Android NavigationView:不显示完整项目而不截断

时间:2016-02-24 11:01:28

标签: android-support-library title menuitem navigationview

问题:NavigationView 不显示菜单项的全文,同时不截断文字

我正确看到这个项目 - 两个字" 小标题":

<item
android:id="@+id/example1"
android:icon="@drawable/filter_2"
android:title="Small title"
android:checked="false"
app:actionLayout="@layout/menu_counter" />
/>

接下来的项目 - 我只看到前两个单词&#34; 小标题&#34;没有任何截断下一个单词&#34; 和非常长篇&#34;:

<item
android:id="@+id/example2"
android:icon="@drawable/filter_2"
android:title="Small title andveryverylongword"
android:checked="false"
app:actionLayout="@layout/menu_counter" />
/>

小工具:

<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
ndroid:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer"/>

另外:AndroidStudio 1.5,支持库。

已编辑: 以下是标准项目&#34;导航抽屉活动&#34;在Android Studio中。

activity_main_drawer.xml: menu

在手机中: not see long word

2 个答案:

答案 0 :(得分:6)

我刚刚开始工作了 *覆盖design_navigation_item.xml并将其更改为使用  android:layout_height="wrap_content" android:minHeight="?android:listPreferredItemHeightSmall"

  • 覆盖design_navigation_menu_item.xml以使用maxLines = 2
有点酷,我简直不敢相信。感谢stackoverflow上讨论覆盖图标大小的人,这帮助我思考了这个方向。

答案 1 :(得分:2)

在布局的NavigationView中添加app:itemMaxLines="2"。 那对我有用。

<com.google.android.material.navigation.NavigationView
            android:id="@+id/navigation_view"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="end"
            app:itemMaxLines="2"
            android:background="@color/background_color"
            app:headerLayout="@layout/nav_header_main"
            app:menu="@menu/activity_main_drawer" />