如何在android的边缘按钮上放置文本

时间:2015-03-12 07:24:26

标签: android button

Button with text on extreme edges

我想将文字放在最边缘的按钮上 点击按钮左侧的,然后点击按钮右侧的此处。如何实现这一目标。

我使用了TAG android:text="Click Here",因为按钮在全屏幕上我希望这些单词处于极端边缘

1 个答案:

答案 0 :(得分:0)

使用以下RelativeLayout。您可以自定义值。在这里,您可以通过设置RelativeLayout来使所有TextViewOnClickListener充当按钮。

<RelativeLayout
    android:id="@+id/mybutton"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:padding="20dp"
    android:background="#3983B1" >

    <TextView
        android:id="@+id/leftButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:text="Click"
        android:textColor="#ffffff" />

    <TextView
        android:id="@+id/rightButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:text="Here"
        android:textColor="#ffffff" />
</RelativeLayout>

布局如下:

enter image description here