我试图将recyclelerview放在我的LinearLayout下面,但是对于recyclerview没有android:layout_below选项! 然后我尝试将我的recyclerview放入LinearLayout并为布局设置layout_below,但是对于linearlayout也没有layout_below!
对不起,我不擅长英语,但无论如何......这是我的XML:
<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"
tools:context="tablo.mirshekari.customers.StoreFragment">
<LinearLayout
android:id="@+id/store_view"
android:layout_width="match_parent"
android:layout_height="200dp"
android:gravity="right"
android:paddingRight="20dp"
android:paddingTop="20dp"
android:background="@color/cardview_dark_background"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="45dp"
android:gravity="right"
android:paddingTop="10dp"
android:background="@color/cardview_dark_background"
android:orientation="horizontal">
<TextView
android:layout_width="match_parent"
android:layout_height="30dp"
android:text="lasjdbkajbd"
android:textColor="@color/white"
android:paddingRight="10dp"
android:layout_gravity="right"
android:gravity="right|center_vertical"
android:id="@+id/store_name" />
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/ic2w"
android:layout_gravity="right"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="60dp"
android:gravity="right"
android:background="@color/cardview_dark_background"
android:orientation="horizontal">
<TextView
android:layout_width="match_parent"
android:layout_height="30dp"
android:text="lasjdbkajbd"
android:textColor="@color/white"
android:paddingRight="10dp"
android:layout_gravity="right"
android:gravity="right|center_vertical"
android:id="@+id/store_textposition" />
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/address_white"
android:layout_gravity="right"
/>
</LinearLayout>
</LinearLayout>
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
></android.support.v7.widget.RecyclerView>
</FrameLayout>
答案 0 :(得分:4)
据我所知,layout_below
仅适用于RelativeLayout
。请参阅RelativeLayout.LayoutParams
和LinearLayout.LayoutParams
。
这意味着,您必须将您的视图放入RelativeLayout才能使用该属性。
<强>更新强>
是的,您将视图发送到FrameLayout
。考虑使用垂直方向将其更改为LinearLayout
,或使用RelativeLayout
将layout_below
更改为RecyclerView
。
答案 1 :(得分:0)
线性布局不包含 android: layout_below 选项。 因此,您可以使用相对布局代替线性布局来使用 android:layout_below 选项。