答案 0 :(得分:1)
使用相对布局进行定位
使用没有背景颜色的(X)图像按钮并将其放在中间 使用
<ImageButton android:id="@+id/btnid"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal"
android:background="@drawable/(X)image">
</ImageButton>
答案 1 :(得分:0)
你问过2个问题 1)如何在android中绘制这个xml布局?
你应该尝试一些xml代码并发布你被困的地方
2)如何将(X)按钮放在布局的中下部。
为此,使用父布局作为&#39;相对布局&#39;然后让你查看(让我们说你有ImageView)layout_alignParentBottom = true和layout_centerHorizontal = true。您也可以参考下面的代码。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Testing"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"/>
</RelativeLayout>