在我的應用程序中,我需要在兩個不同的活動中使用RecyclerView
。 我想擴展布局,因爲基本佈局(回收視圖)對於兩個活動是相同的,但我不知道是否可能。 以「延長佈局」我的意思是這樣的:是否可以擴展布局?
如果這是我的base_layout.xml
:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"">
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/recyclerView">
</android.support.v7.widget.RecyclerView>
</RelativeLayout>
我願做這樣的事情在我child_layout.xml
:
include "base_layout.xml"
<Button
android:id="@+id/btnAddVehicle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="+"
android:onClick="launchAddVehicleActivity"/>
因此,使用chid_layout.xml
的活動將獲得RecyclerView
和Button
裏面。
是否有可能做這樣的事情?如果你想添加你需要編寫一個自定義組件裏面的佈置按鈕
它是正是我想要的,非常感謝你:) – Clyky