像Jabong移动应用程序的动作标题

时间:2015-08-17 11:20:48

标签: android android-layout

我希望达到这样的目的:


我的理解是使用卡片布局,我尝试了一些事情,但没有像上面那样得到视图。一个简短的想法会做到这一点

1 个答案:

答案 0 :(得分:0)

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="sometext"
        android:layout_weight="1"/>
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="sometext"
        android:layout_weight=".1"/>
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="sometext"
        android:layout_weight=".1"/>
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="sometext"
        android:layout_weight="1"/>

</LinearLayout>