将中心对齐到同一行android上的图像按钮

时间:2016-06-17 17:13:47

标签: android

我有一个布局,其中3 ImageButtons位于另一个右侧,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/res-auto"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main3con"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:showIn="@layout/activity_main3">

    <TextView
        android:id="@+id/textx"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="cards"
        android:textSize="25dp" />

    <ImageButton
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:layout_below="@+id/textx"
        android:src="@drawable/random_40x40" />

    <ImageButton
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/button"
        android:layout_toEndOf="@+id/button"
        android:layout_toRightOf="@+id/button"
        android:src="@drawable/add_40x40" />


    <ImageButton
        android:id="@+id/button4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/button3"
        android:layout_toEndOf="@+id/button3"
        android:layout_toRightOf="@+id/button3"
        android:src="@drawable/reset_40x40" />

    <ListView
        android:id="@+id/listVieww"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentEnd="true"
        android:layout_alignParentRight="true"
        android:layout_below="@+id/textView" />

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@id/button"
        android:layout_alignParentStart="true"
        android:text="New Text" />


</RelativeLayout>

如您所见,我使用TextViewandroid:gravity="center"“@ + id / textx”与中心对齐,我也想将ImageButtons与中心对齐,我尝试了周围它与LinearLayout这样的东西,但我不知道该怎么做。我想将它们对齐在同一行,意思是像三个第一个按钮here

1 个答案:

答案 0 :(得分:1)

您可以使用ImageButtons线性布局并将权重分配给<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:padding="40dp"> <ImageButton android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/random_40x40" android:layout_weight="1" android:layout_marginLeft="5dp" android:layout_marginRight="5dp" /> <ImageButton android:id="@+id/button3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/add_40x40" android:layout_weight="1" android:layout_marginLeft="5dp" android:layout_marginRight="5dp" /> <ImageButton android:id="@+id/button4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/reset_40x40" android:layout_weight="1" android:layout_marginLeft="5dp" android:layout_marginRight="5dp" /> </LinearLayout> ,如下所示:

Python 2.7.6 (default, Jun 22 2015, 17:58:13) 
>>> x = 'before'
>>> a = [x for x in (1, 2, 3)]
>>> x
3