1
のような千鳥格子を作成します。私は、このビューを達成しようとしています与えられた画像
これは部分図で、私はビューが垂直方向に2つのセルと合併または水平方向に2つのセルまたは単一の統合されていることができます小さい眺め。
このビューは垂直にスクロールすることができます
私はこれを手伝ってください。
のような千鳥格子を作成します。私は、このビューを達成しようとしています与えられた画像
これは部分図で、私はビューが垂直方向に2つのセルと合併または水平方向に2つのセルまたは単一の統合されていることができます小さい眺め。
このビューは垂直にスクロールすることができます
私はこれを手伝ってください。
layout_weight
とweightSum
のネストされたLinearLayout
を使用してこのレイアウトを作成できます。このレイアウトをscrollable
にするには、ScrollView
をルートレイアウトとして使用します。
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="8dp"
android:orientation="vertical">
<!-- ROW1 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="100dp"
android:background="#ff0000">
</LinearLayout>
<!-- ROW2 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:orientation="horizontal"
android:weightSum="2">
<!-- ROW2 COL1-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_marginRight="4dp"
android:layout_weight="1"
android:background="#00ff00">
</LinearLayout>
<!-- ROW2 COL2-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="4dp"
android:orientation="vertical"
android:layout_weight="1"
android:weightSum="2">
<!-- ROW2 COL2 CHILD1-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="96dp"
android:layout_marginBottom="4dp"
android:layout_weight="1"
android:background="#0000ff">
</LinearLayout>
<!-- ROW2 COL2 CHILD2-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="96dp"
android:layout_marginTop="4dp"
android:layout_weight="1"
android:background="#0000ff">
</LinearLayout>
</LinearLayout>
</LinearLayout>
<!-- ROW3 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:orientation="horizontal"
android:weightSum="2">
<!-- ROW3 COL1-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginRight="4dp"
android:layout_weight="1"
android:background="#fff000">
</LinearLayout>
<!-- ROW3 COL2-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginLeft="4dp"
android:layout_weight="1"
android:background="#fff000">
</LinearLayout>
</LinearLayout>
<!-- ROW4 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:orientation="horizontal"
android:weightSum="2">
<!-- ROW4 COL1-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_marginRight="4dp"
android:layout_weight="1"
android:background="#ff00ff">
</LinearLayout>
<!-- ROW4 COL2-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="4dp"
android:orientation="vertical"
android:layout_weight="1"
android:weightSum="2">
<!-- ROW4 COL2 CHILD1-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="96dp"
android:layout_marginBottom="4dp"
android:layout_weight="1"
android:background="#00ffff">
</LinearLayout>
<!-- ROW4 COL2 CHILD2-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="96dp"
android:layout_marginTop="4dp"
android:layout_weight="1"
android:background="#00ffff">
</LinearLayout>
</LinearLayout>
</LinearLayout>
</LinearLayout>
</ScrollView>
OUTPUT:
あなたはまた、このビューを達成するためにGridLayout
を使用することができます。ここ
は実施例です。
ここには、tutorial約GridLayout
といくつかのstackOverflow answersがあります。これは〜リンク以下
チェックアウトするのに役立ちます
希望:http://abhiandroid.com/materialdesign/recyclerview-as-staggered-grid-example.html –
@sapna、私はこのコードビューを確認しているだけで手配されています垂直方向ですが、私は垂直方向と水平方向の同期を確認できます –
これは、https://inducesmile.com/android/android-staggeredgridlayoutmanager-example-tutorial/ –