如何实现像Palabre这样的布局

时间:2016-04-14 06:33:20

标签: android listview gridview

我一直试图在Palabre应用中实现布局。以下是该应用的基本布局:

enter image description here

我也是从github使用这个库: AsymmetricGridView但仍无法达到所需的布局。

有人可以在这里指导我。

1 个答案:

答案 0 :(得分:1)

如果是列表 - 使用这个很棒的库来构建交错列表。

https://github.com/lucasr/twoway-view

如果它不是列表 - >

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <TextView 
            android:layout_width="match_parent"
            android:text="Cell1"
            android:layour_weight="1"
            android:layout_height="wrap_content"/>
        <TextView 
            android:layout_width="match_parent"
            android:text="Cell2"
            android:layour_weight="1"
           android:layout_height="wrap_content"/>
    </LinearLayout>
       <TextView 
        android:layout_width="match_parent"
        android:text="Cell3"
        android:layout_height="wrap_content"/>
    </LinearLayout>