在充气后找不到自定义视图的子元素

时间:2014-07-09 09:53:41

标签: android

我正在尝试为活动加载充气自定义视图,然后对该视图的子元素执行某些操作。下面我尝试给视图充气,然后在布局XML中获取对TextView的引用来更新文本值。但是在下面的代码中,在最后一行之后,actionBarTitle为null - 当我希望它是对TextView的引用时。我做错了什么?

活动onCreate()方法

    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_view_userseed);

LayoutInflater inflator = LayoutInflater.from(this);
        actionBarView = inflator.inflate(R.layout.fragment_actionbar_viewseed, null);
        TextView actionBarTitle = (TextView) actionBarView.findViewById(R.id.action_bar_title);
}       

布局XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/actionbar_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="14sp" />

    <android.support.v4.view.ViewPager     
        android:id="@+id/actionbar_pager"     
        android:layout_width="match_parent"     
        android:layout_height="match_parent">

        <android.support.v4.view.PagerTitleStrip
            android:id="@+id/actionbar_pagerstrip"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
         />

    </android.support.v4.view.ViewPager>

</LinearLayout>

1 个答案:

答案 0 :(得分:1)

尝试:

TextView actionBarTitle =(TextView)actionBarView.findViewById(R.id.actionbar_title);