android - 如何在布局中均匀对齐 ImageButtons

标签 android android-xml android-imagebutton

我目前在布局中有 4 个 ImageButton,它只占屏幕高度的一半。我希望 ImageButton 在布局中均匀放置。这是我所拥有的:

<?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:orientation="horizontal">

    <ImageButton
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:src="@mipmap/feed_button"
        android:background="@android:color/transparent"
        android:layout_weight="1" />

    <ImageButton
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:src="@mipmap/feed_button"
        android:background="@android:color/transparent"
        android:layout_weight="1" />

</LinearLayout>

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

    <ImageButton
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:src="@mipmap/feed_button"
        android:background="@android:color/transparent"
        android:layout_weight="1" />

    <ImageButton
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:src="@mipmap/feed_button"
        android:background="@android:color/transparent"
        android:layout_weight="1" />

</LinearLayout>

</LinearLayout>

这是可行的,因为这是结果:

enter image description here

问题是,1:我想在每个按钮下添加文本,但我不确定这将如何工作,以及 2:ImageButton 左右两侧的白点s 是 Activity 的,就好像它们是按钮的一部分。有更好的方法吗?

最佳答案

你可以这样做

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_gravity="center"
    android:layout_weight="1"
    android:gravity="center"
    android:orientation="horizontal">

    <RelativeLayout
        android:id="@+id/section1"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="@android:color/transparent">

        <ImageButton
            android:id="@+id/img1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@mipmap/ic_launcher" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/img1"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="10dp"
            android:text="info 1"
            android:textColor="#fff"
            android:textSize="25sp" />
    </RelativeLayout>


    <RelativeLayout
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="@android:color/transparent">

        <ImageButton
            android:id="@+id/img2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@mipmap/ic_launcher" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/img2"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="10dp"
            android:text="info 2"
            android:textColor="#fff"
            android:textSize="25sp" />
    </RelativeLayout>


</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_gravity="center"
    android:layout_weight="1"
    android:gravity="center"
    android:orientation="horizontal">

    <RelativeLayout
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="@android:color/transparent">

        <ImageButton
            android:id="@+id/img3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@mipmap/ic_launcher" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/img3"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="10dp"
            android:text="info 3"
            android:textColor="#fff"
            android:textSize="25sp" />
    </RelativeLayout>

    <RelativeLayout
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="@android:color/transparent">

        <ImageButton
            android:id="@+id/img4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:src="@mipmap/ic_launcher" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/img4"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="10dp"
            android:text="info 4"
            android:textColor="#fff"
            android:textSize="25sp" />
    </RelativeLayout>

</LinearLayout>

结果

enter image description here

对于问题的第二部分,您应该在整个相关布局上设置点击监听器。例如点击第一个单元格:-

xml

 android:id="@+id/section1"

Java

findviewbyid(R.id.section1).setOnClickListener(...)

关于android - 如何在布局中均匀对齐 ImageButtons,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38089417/

相关文章:

android - 应用程序无权发送到此设备 : collapsed-count: 2 in Urban Airship android

android - 如何从 android 平台构建中删除大量模块?

android - 如何从App中的URL下载图片

Android Lollipop 按钮波纹不显示

android - 在Kotlin项目中应用Realm插件导致编译报错

Android Studio : Rendering Problems Missing styles-correct theme chosen for this layout, 无法找到带有 id 的样式

安卓用户界面元素

Android onClickListener 在复合 View 中不起作用

Android Imagebutton被剪裁