2017-04-14 12 views
1

のような千鳥格子を作成します。私は、このビューを達成しようとしています与えられた画像

enter image description here

これは部分図で、私はビューが垂直方向に2つのセルと合併または水平方向に2つのセルまたは単一の統合されていることができます小さい眺め。

このビューは垂直にスクロールすることができます

私はこれを手伝ってください。

+0

チェックアウトするのに役立ちます

希望:http://abhiandroid.com/materialdesign/recyclerview-as-staggered-grid-example.html –

+0

@sapna、私はこのコードビューを確認しているだけで手配されています垂直方向ですが、私は垂直方向と水平方向の同期を確認できます –

+0

これは、https://inducesmile.com/android/android-staggeredgridlayoutmanager-example-tutorial/ –

答えて

0

layout_weightweightSumのネストされた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:

enter image description here

あなたはまた、このビューを達成するためにGridLayoutを使用することができます。ここ

は実施例です。

ここには、tutorialGridLayoutといくつかのstackOverflow answersがあります。これは〜リンク以下

関連する問題