2016-02-12 2 views
0

У меня есть TextView внутри моего тега NavigationView. Но я не могу получить его с findViewById методом:Android: не удалось получить TextView внутри тега NavigationView

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

    <RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 

     <TextView 
      android:id="@+id/version_name" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentBottom="true" 
      android:layout_marginBottom="20dp" 
      android:layout_marginLeft="20dp" 
      android:layout_marginStart="20dp" /> 

    </RelativeLayout> 

</android.support.design.widget.NavigationView> 

Я попытался следующие способы, но я всегда получаю null.

findViewById(R.id.version_name); //null 
navigationView.findViewById(R.id.version_name); //null 
navigationView.getRootView.findViewById(R.id.version_name); //null 
+1

http://stackoverflow.com/questions/33161345/android-support-v23-1-0-update-breaks-navigationview-get-find-header/33163288#33163288 –

+0

Возможные дубликатом HTTP://stackoverflow.com/questions/33199764/android-api-23-change-navigation-view-headerlayout-textview –

ответ

0

То, что я пытаюсь сделать, это добавить foother к моей навигации ящик, чтобы показать версию приложения. Поскольку версия приложения - это динамические данные, добавление статического текстового представления к навигационному представлению и обертка их внешним макетом также не может работать. Правильный Approch решить проблему описана ниже ссылке:

NavigationView with Foother

Главная идея кладя два NavigationView в NavigationView: один для нормальных элементов навигации и второй для foother пунктов.

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/layout_dashboard" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true" 
    tools:context=".MainActivity"> 

    <!-- Activity content goes here --> 

    <android.support.design.widget.NavigationView 
     android:id="@+id/navigation_drawer_container" 
     android:layout_width="wrap_content" 
     android:layout_height="match_parent" 
     android:layout_gravity="start"> 

     <android.support.design.widget.NavigationView 
      android:id="@+id/navigation_drawer" 
      android:layout_width="wrap_content" 
      android:layout_height="match_parent" 
      android:layout_gravity="top" 
      app:menu="@menu/menu_navigation_drawer" /> 

     <android.support.design.widget.NavigationView 
      android:id="@+id/navigation_drawer_bottom" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_gravity="bottom" 
      app:menu="@menu/menu_navigation_drawer_bottom" /> 

    </android.support.design.widget.NavigationView> 

</android.support.v4.widget.DrawerLayout> 
1

у меня такая же проблема ..

View header = LayoutInflater.from(this).inflate(R.layout.nav_header_main, null); 
navigationView.addHeaderView(header); 
TextView text = (TextView) header.findViewById(R.id.textView); 
texto.setText("Your text");