我想知道如何在活动加载后在RelativeLayout
的中心设置点击次数?
答案 0 :(得分:3)
在gravity
中使用RelativeLayout
中心,并在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"
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"/>