我添加了我的代码,其中包含带有mapview动态创建的Framelayout
和带有其他布局的RecyclerView
,我将其用作Fragment
片段状态适配器中的ViewPager
。< / p>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/list_item"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:elevation="5dp"
android:id="@+id/rv"
android:layout_above="@+id/custom_progress1"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
</RelativeLayout>
<LinearLayout
android:id="@+id/mapLayout"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/mapContainer"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
</LinearLayout>
</RelativeLayout>
答案 0 :(得分:0)
更好的单父布局有助于更快的UI渲染。你可以使用像
这样的东西<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.RecyclerView
android:id="@+id/rv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:elevation="5dp" />
<FrameLayout
android:id="@+id/mapContainer"
android:layout_width="match_parent"
android:layout_below="@+id/rv"
android:layout_height="match_parent" />
</RelativeLayout>