Я пытаюсь получить доступ к TextView
из включенного макета, но я не знаю, как это сделать. Это макет я setContentView(R.layout.activity_home);
на мой onCreate
:Доступ к нескольким включенным макетам из другого XML-файла
<?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>
То, что я хочу, чтобы получить доступ к TextView, который идентификатор txtRola3
следующим способом:
@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
(который сейчас я не могу заполнить данными). Я знаю, что на этот вопрос уже был дан ответ, но поскольку у меня есть три макета, а один - другой, я не мог получить удачу с другими ответами.
EDIT: 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 строк, поэтому я добавил здесь, что имеет значение больше всего.
вы можете использовать добавить другую XML –
KrishnaJ
Я не понимаю, что вы имеете в виду, @KrishnaJ –
<включают макет = «@ макет/app_bar_home» /> вы не указали файл макета в –
KrishnaJ