如何在加载活动后在RelativeLayout的中心设置单击

时间:2017-08-04 06:55:18

标签: android android-layout

我想知道如何在活动加载后在RelativeLayout的中心设置点击次数?

1 个答案:

答案 0 :(得分:3)

  1. gravity中使用RelativeLayout中心,并在RelativeLayout中放置可点击元素

    <Button
        android:id="@+id/the_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Centered Button"/>
    

  2. android:layout_centerInParent="true"

    中的可点击元素中使用RelativeLayout

    <Button
        android:id="@+id/the_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Centered Button"
        android:layout_centerInParent="true"/>