无法从与我的活动不同的资源文件中提取文本视图

时间:2014-06-11 20:06:38

标签: android xml

我有一个开始活动,我尝试在实现listview时使用单独的textview作为页脚。

我的应用程序每次尝试初始化时都会崩溃

TextView add;

add = (TextView) getLayoutInflater().inflate(R.id.tvAdd, null);
    add.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            Intent intent = new Intent(StartActivity.this, AddToDoActivity.class);
            startActivityForResult(intent, GET_RESULT);
        }
    });

我把我的add添加为全班变量。

与此活动相关联的资源文件称为activity_start.xml,但textview的资源文件称为footerview.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/tvAdd"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Add New To Do Item"
    android:gravity="center" />

</LinearLayout>

我的首发xml:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.uilab.StartActivity"
tools:ignore="MergeRootFrame" >


<ListView
    android:id="@android:id/list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >
</ListView>


 </FrameLayout>

如何将textview添加到我的活动中?

3 个答案:

答案 0 :(得分:3)

你只能夸大布局( - &gt; xmls / R.layout.x)而不是任何布局中的单个视图...所以给你的footerview.xml充气,如:

ViewGroup vg = (ViewGroup) getLayoutInflater().inflate(R.id.footerview, null);

然后使用该布局上的findViewById访问您的textview ...但这不会将您的视图添加到活动布局...

我认为您正在寻找一种在foot_start布局中包含footerview布局的方法...使用include-tag可以帮助您(http://developer.android.com/training/improving-layouts/reusing-layouts.html) 然后,您可以直接在活动中使用findViewById访问您的textview

答案 1 :(得分:0)

您的activity_start.xml可能就像下面的示例。其中包含ListViewTextView

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <ListView
        android:id="@+id/listView1"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" >
    </ListView>

    <TextView
        android:id="@+id/tvAdd"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="Add New To Do Item" />

</LinearLayout>

答案 2 :(得分:0)

(假设你在你的活动的“onCreate”功能中做了所有这些,你应该这样做)。确保首先膨胀主要内容:

setContentView(R.layout.<"my starting xml" real file name>);

为了向ListView添加页脚,您需要像这样膨胀整个页脚视图(footerview.xml):

View footer = getLayoutInflater().inflate(R.layout.footerview, null);

跟踪你的TextView:

TextView add = (TextView)footer.findViewById(R.id.tvAdd);
add.setOnClickListener(new View.OnClickListener() {

    @Override
    public void onClick(View v) {
        Intent intent = new Intent(StartActivity.this, AddToDoActivity.class);
        startActivityForResult(intent, GET_RESULT);
    }
});

然后,找到你的ListView变量:

ListView list = (ListView)this.findViewById(android.R.id.list);

最后,添加页脚视图:

list.addFooterView(footer);