0
<android.support.design.widget.NavigationView
    android:id="@+id/leftNavigationView"
    android:background="@color/LIGHT_BEIGE_COLOR"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    app:headerLayout="@layout/header_layout"
    app:menu="@menu/left_drawer"
    android:theme="@style/LeftNavigationViewStyle"/>

在我的 header_layout. 我有一个 ImageView 和 TextView。我想知道如何以编程方式将值设置为 headerLayout TextView

4

1 回答 1

1

您必须通过 navigationView 访问标题,然后通过其 Id 找到您的 TextView。

    NavigationView navigationView = (NavigationView) findViewById(R.id. leftNavigationView);
    TextView headerTextView = (TextView) navigationView.getHeaderView(0).findViewById(R.id.header_text:view);
于 2016-02-11T10:11:28.023 回答