如何在另一个视图的顶部和中心找到一个视图?所以我希望在其下面加ImageButton
和TextView
,但第一个位于中间位置,位于第二个位置之上。
答案 0 :(得分:1)
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<TextView android:id="@+id/textView1" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="SOME TEXT HERE"
android:layout_centerInParent="true" />
<ImageButton android:src="@drawable/icon" android:id="@+id/imageButton1"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_centerInParent="true" />
</RelativeLayout>
答案 1 :(得分:0)
您可以使用FrameLayout来实现此目标