我有一个RecyclerView,用于展示产品的布局。我需要你的帮助来显示产品的垂直列表,但是在同一行上水平显示2个产品,而它们下面的下两个产品应该水平显示on ..这是我的xml ..我需要以这样的方式给它充气,以便我能够实现上述任务..请帮忙!
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="wrap_content">
<TableRow
android:layout_marginTop="@dimen/_5sdp"
android:layout_marginLeft="@dimen/_5sdp"
android:id="@+id/product_list_ll"
android:layout_marginRight="@dimen/_5sdp"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="@dimen/_5sdp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight="1">
<com.android.volley.toolbox.NetworkImageView
android:id="@+id/product_image"
android:layout_width="match_parent"
android:layout_height="@dimen/_200sdp"
android:scaleType="centerInside"
android:adjustViewBounds="true"/>
<RelativeLayout
android:layout_margin="@dimen/_3sdp"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/product_name"
android:text="Product name"
android:textColor="@color/appBasic"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/wishlist"
android:layout_margin="@dimen/_3sdp"
android:textSize="@dimen/_18sdp"
android:text="@string/fa_heart"
android:layout_gravity="right|end"
android:gravity="right|end"
android:textColor="@color/appBasic"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:layout_below="@+id/product_name"
android:layout_marginTop="@dimen/_3sdp"
android:id="@+id/product_price"
android:text="Product price"
android:textColor="@color/appBasic"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:layout_below="@+id/product_name"
android:id="@+id/product_id"
android:visibility="gone"
android:text="Product price"
android:textColor="@color/appBasic"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:layout_below="@+id/product_price"
android:id="@+id/product_discount_price"
android:layout_marginTop="@dimen/_3sdp"
android:text="Discount price"
android:textColor="@color/appBasic"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
</LinearLayout>
</TableRow>
</TableLayout>