<androidx.drawerlayout.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:id="@+id/drawer"
xmlns:app="http://schemas.android.com/apk/res-auto">
<com.google.android.material.navigation.NavigationView
android:id="@+id/navigationView"
android:background="@color/blueBackground"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:menu="@menu/drawer_menu"
app:itemTextColor="@color/drawerItemColor"
app:itemIconTint="@android:color/white"
app:headerLayout="@layout/header"/>
</androidx.drawerlayout.widget.DrawerLayout>
现在,我想添加Facebook Instagram和Twitter的符号以直线显示(水平)。但是,如果我将其添加到菜单中,它们将垂直显示。我有什么选择?请帮忙。
对布局的期望Expected Layout
这是我的实际布局My actual layout