我正在实现导航视图,它有标题视图如何动态隐藏图像视图
下面是我的代码
<android.support.design.widget.NavigationView
android:id="@+id/navigation_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/drawer_header"
app:menu="@menu/drawer" />
抽屉头.xml
<?xml version="1.0" encoding="utf-8"?>
<ImageView
android:id="@+id/drawer_logo_icon"
android:layout_width="150dp"
android:layout_height="0px"
android:layout_gravity="center"
android:layout_marginTop="10dp"
android:layout_weight="2"
android:background="@drawable/logo_white" />
<TextView
android:id="@+id/drawer_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="@style/TextAppearance.AppCompat.Body1" />
<TextView
android:id="@+id/drawer_phone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/drawer_header_text"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
android:visibility="invisible" />
要获取菜单项,我可以使用 navigationview.getmenuID()。但是如何以编程方式隐藏标题布局图像