如何使用两个按钮集中在中心和顶部的布局

时间:2015-04-22 09:02:10

标签: android layout

我有一个布局,它有一个框架布局,将显示图像,在该图像上,我想在屏幕顶部显示两个按钮。在这两个屏幕的背景上有一个透明的水平条,我将其设置为Relative或LinearLayout的背景。

然后我想在它上面放两个按钮,它们之间的距离很远,我希望相对布局的背景在按钮的右/左边缘之后结束。在其他情况下,我不希望条形填充整个宽度。我想在这里,我在图片中发布这里。查看link以更好地了解我想要的内容。我已经做到了这一点,但这并不像在某些设备上那么灵活它看起来很奇怪。

并且如果我使用重量和重量,那么按钮图像的宽度会拉伸,当我的图像在宽度上拉伸时看起来非常奇怪。我有方形图像。

以下是我的尝试:

<LinearLayout
    android:id="@+id/LinearLayout1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/transparent_image"
    android:layout_gravity="center_horizontal">

    <ImageButton
        android:id="@+id/btn_gallery"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_weight="1"
        android:background="@android:color/transparent"
        android:src="@drawable/btn_gallery"
        />
    <TextView
        android:layout_width="20dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center"/>

    <ImageButton
        android:id="@+id/btn_share"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_weight="1"
        android:background="@android:color/transparent"
        android:src="@drawable/btn_share" />
</LinearLayout>

3 个答案:

答案 0 :(得分:2)

layout_width设为match_parent。 并在两个按钮上添加android:gravity ="center"

答案 1 :(得分:0)

尝试根据你的参考做出更好的对齐。

 <LinearLayout
    android:id="@+id/LinearLayout1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:weightSum="2"
      android:layout_marginLeft="10dp"
       android:layout_marginRight="10dp"
android:background="@android:color/transparent"
    android:layout_gravity="center_horizontal">

    <RelativeLayout 

     android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginLeft="5dp"
        android:layout_weight="1"
        android:gravity="center"
    >
    <ImageButton
        android:id="@+id/btn_gallery"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_weight="1"

        android:layout_marginRight="10dp"
        android:background="@android:color/transparent"
        android:src="@drawable/ic_launcher"
        />
   </RelativeLayout>
<RelativeLayout 

     android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginRight="5dp"
        android:layout_weight="1"
        android:gravity="center"
    >
    <ImageButton
        android:id="@+id/btn_share"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_weight="1"

        android:layout_marginLeft="10dp"
        android:background="@android:color/transparent"
        android:src="@drawable/ic_launcher" />
    </RelativeLayout>
</LinearLayout>

答案 2 :(得分:0)

使用此代码:

<?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_marginLeft="20dp"
    android:layout_marginRight="20dp"
    android:orientation="horizontal"
    android:layout_height="60dp" >

    <Button
        android:id="@+id/button1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_weight="0.1"
        android:text="Button" />

    <Button
        android:id="@+id/button2"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_weight="0.1"
        android:text="Button" />
</LinearLayout>

</LinearLayout>