GridLayout设计风格,图标和文字使用材料设计?

时间:2015-07-22 01:08:01

标签: android android-layout

使用支持库获取设计材料的文本设计图标的最佳方法是什么。它看起来像上面链接的图像 enter link description here

1 个答案:

答案 0 :(得分:1)

正如 Karakuri 在评论中所说,嵌套的LinearLayouts将呈现您所需的视图

enter image description here

以下是布局代码

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:weightSum="3"
    android:padding="16dp"
    android:orientation="horizontal">


    <LinearLayout
        android:orientation="vertical"
        android:layout_weight="1"
        android:gravity="center"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_action_repeat_48d"/>

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Repeat"/>

    </LinearLayout>

    <LinearLayout
        android:orientation="vertical"
        android:layout_weight="1"
        android:gravity="center"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_action_heart_48d"/>

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Favourite"/>

    </LinearLayout>

    <LinearLayout
        android:orientation="vertical"
        android:layout_weight="1"
        android:gravity="center"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_action_shuffle_48dp"/>

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Shuffle"/>

    </LinearLayout>

</LinearLayout>

代码只是一个布局结构,您必须根据需要添加填充和ImageView width-height。你必须为你想要的布局做一些工作。如果您想要两行同样上传的图片,只需复制两次布局。

如果实施有任何问题,希望它可以帮助或删除评论。

干杯!