Android-如何在一行中创建4个方形按钮,并在其上方添加图标?

时间:2017-07-04 06:46:24

标签: android button tiles

我正在尝试创建一个应用程序,该应用程序在一行中有4个方形按钮,这些按钮顶部有一个图标。哪种方法最好?我试图做这样的事情如图所示

enter image description here

谢谢

3 个答案:

答案 0 :(得分:0)

你试过表布局吗?虽然您可以使用任何布局,但我建议您坚持使用一个父布局(如相对布局),然后使用多个子布局来管理UI元素。

答案 1 :(得分:0)

将可绘制图像设置为 @mipmap / ic_launcher_round

<?xml version="1.0" encoding="utf-8"?>
<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:layout_marginRight="4sp"
        android:orientation="horizontal"
        android:weightSum="4">


        <ImageButton
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="4sp"
            android:layout_weight="1"
            android:src="@mipmap/ic_launcher_round" />

        <ImageButton
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="4sp"
            android:layout_weight="1"
            android:src="@mipmap/ic_launcher_round" />

        <ImageButton
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="4sp"
            android:layout_weight="1"
            android:src="@mipmap/ic_launcher_round" />

        <ImageButton
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="4sp"
            android:layout_weight="1"
            android:src="@mipmap/ic_launcher_round" />


    </LinearLayout>

</LinearLayout>

答案 2 :(得分:0)

感谢大家的解决方案。我发布的图片是在photoshop上编辑的。 Now i did it in android studio using linear layout