我正在使用android数据绑定和导航组件。我有activity_member
版面。此布局包括另一种布局:
<include
layout="@layout/app_bar_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/appbar" />
,在app_bar_main
布局中,还包括另一个布局:
<include
android:id="@+id/member"
layout="@layout/content_main" />
在content_main
中,我想放置主机fragmnet以使用导航组件:
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:app="http://schemas.android.com/apk/res-auto">
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".ui.MembersPage.MemberActivity"
tools:showIn="@layout/app_bar_main">
<fragment
android:id="@+id/my_nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="500dp"
app:defaultNavHost="true"
app:navGraph="@navigation/navigation"
tools:layout_editor_absoluteX="-29dp"
tools:layout_editor_absoluteY="215dp"/>
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
这是导航图中的主机片段。我需要在Java类中访问recyclerView,但不能:
binding.appbar.member.membersRecycler.setLayoutManager(new GridLayoutManager(this, 3));
和:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".MembersFragment"
>
<android.support.v7.widget.RecyclerView
android:id="@+id/membersRecycler"
android:layout_width="400dp"
android:layout_height="wrap_content" />
</FrameLayout>
在这种情况下如何访问嵌套元素,例如此处的recyclerView id?
答案 0 :(得分:2)
我认为您应该将RecyclerView标记放在片段布局中,并在片段类中使用DataBinding。
答案 1 :(得分:0)
我将举一个示例,说明如何根据您的情况访问视图。
比方说,您在类对象title
中有一个字符串myObject
从activity_member
传递到app_bar_main
,并且您的对象在activity_member
中是这样定义的。
<data>
<variable
name="myObject"
type="com.example.model.Object"/>
</data>
现在要将title
内的名为myObject
的字符串传递给app_bar_main
,则必须在app_bar_main
中定义变量
像这样
<data>
<variable
name="title"
type="String"/>
</data>
这样做之后,您将能够从app_bar_main
版面中包含activity_member
的位置传递标题。
<include
layout="@layout/app_bar_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/appbar"
app:title = "@{myObject.title}"/>
此外,现在您将能够访问app_bar_main
内部的所有视图。假设您有一个ID为myTextView
TextView textView = binding.appbar.myTextView;