正如标题所说,我想知道是否有办法控制NavigationView
标题内的视图? (除了添加或删除标题外。)
例如:在标题中,我有一个用户头像。默认情况下,它显示访客图像,但在用户登录后,将显示真实的头像。
如何实现这一目标?
答案 0 :(得分:55)
将支持库更新至版本23.1.1或更高版本后,
你可以这样做 -
View header = navigationView.getHeaderView(0);
TextView text = (TextView) header.findViewById(R.id.textView);
或者如果您有多个标题
navigationView.getHeaderCount()
参考:https://code.google.com/p/android/issues/detail?id=190226#c31
答案 1 :(得分:7)
因为我不能接受评论作为答案。所以,我转发Moinkhan'在这里回答:
首先创建标题XML,如lay_header.xml
<TextView
android:id="@+id/tvThought"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
你的java文件上的在TextView中膨胀了上面的标题。像
TextView headerView = (TextView) LayoutInflater.from(this).inflate(R.layout.lay_header, null);
headerView.setText("Your_thoght");
现在将其添加为HeaderView
navView = (NavigationView) findViewById(R.id.navView);
navView.addHeaderView(headerView);
多数民众赞成......
您也可以在Customising NavigationView - Adding dynamic headerView, Android Support Design Library
查看非常感谢! 而且,我们需要一个允许用户接受评论作为答案的函数!
答案 2 :(得分:1)
另一种方法是使用方法&#34; inflateHeaderView()&#34;的NavigationView对象,如下所示(使用&#34; setContentView()&#34;)之后:
View headerLayout = navigationView.inflateHeaderView(R.layout.yours_nav_header_layout);
在此之后你可以使用&#34; headerLayout&#34;访问标题布局中的自定义视图,如下所示:
View cutomView = (TextView) headerLayout.findViewById(R.id.lay_sign_in);
在我的情况下,我使用ButterKnife框架来注入View&#34; navigationView&#34;像这样:
@Bind(R.id.nav_view) NavigationView navigationView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ButterKnife.bind(this);
}
答案 3 :(得分:0)
只需尝试在您的活动中找到您的观点:
tvUserName = (TextView) findViewById(R.id.tv_username);
它对我有用。我的标题布局是:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="192dp"
android:background="?attr/colorPrimaryDark"
android:padding="16dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark"
android:orientation="vertical"
android:gravity="bottom">
<TextView
android:id="@+id/tv_username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"/>
</LinearLayout>
活动布局中的我的NavigationView是:
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/drawer_header"
app:menu="@menu/menu_drawer"/>
顺便说一句,我在膨胀LinearLayout时遇到了问题,没有提供布局参数:
TextView headerView = (TextView) LayoutInflater.from(this).inflate(R.layout.lay_header, null);
headerView.setText("Your_thoght");
希望它有所帮助。