我试图从包含的布局中访问TextView
,但我不知道如何。
这是我setContentView(R.layout.activity_home);
上的onCreate
布局:
<?xml version="1.0" encoding="utf-8"?>
<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/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<include
layout="@layout/app_bar_home"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<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:menu="@menu/activity_home_drawer" />
</android.support.v4.widget.DrawerLayout>
您可以看到此布局包含另一个布局app_bar_home.xml:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.example.branco.sauce.home">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_home"
android:id="@+id/includeContentHome"/>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_email" />
</android.support.design.widget.CoordinatorLayout>
现在这个其他布局包括我的最终xml文件,我有一个TextView
,content_home.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.example.branco.sauce.home"
tools:showIn="@layout/app_bar_home"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ROLA 3"
android:textSize="100px"
android:id="@+id/txtRola3"
/>
<ListView
android:id="@+id/listview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</RelativeLayout>
我想要的是通过以下方法访问id为txtRola3
的TextView:
@Override
protected void onPostExecute(Void result) {
final LayoutInflater inflateContentHome = getLayoutInflater();
final View viewContentHome = inflateContentHome.inflate(R.layout.app_bar_home, null);
TextView txtTest = (TextView)viewContentHome.findViewById(R.id.includeContentHome).findViewById(R.id.txtRola3);
txtTest.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
System.out.println("You clicked on the textview");
}
});
}
正如您所看到的,我尝试过一些布局,但我不知道如何使这项工作成功。我的意思是,我可以看到TextView及其文本,但listener
无效。我确实这样做了,所以我可以学习并访问我的ListView
(现在我无法填充数据)。我知道这个问题之前已经得到了解答,但由于我有三个布局,一个包括另一个,我无法通过其他答案得到任何运气。
编辑:home.java:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_home);
new RemoteDataTask().execute();
}
private class RemoteDataTask extends AsyncTask<Void, Void, Void> {
protected void onPostExecute(Void result) {
final LayoutInflater inflateContentHome = getLayoutInflater();
final View viewContentHome = inflateContentHome.inflate(R.layout.app_bar_home, null);
TextView txtTest = (TextView)viewContentHome.findViewById(R.id.includeContentHome).findViewById(R.id.txtRola3);
txtTest.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
System.out.println("You clicked on the textview");
}
});
}
}
OBS:我的代码大约有800行,所以我在这里添加了最重要的内容。
答案 0 :(得分:0)
事实证明,假设所有三个布局都是“连接”的,我不需要创建一个inflater。我所做的只是findViewByID
,好像我的textview
在主要布局上。
protected void onPostExecute(Void result) {
TextView k = (TextView)findViewById(R.id.rola3);
k.setOnClickListeer...
}