我有一个ImageView
,我想在其中添加EditText
,玩家可以输入他/她的分数。框布局已经存在,但它在图像上。
答案 0 :(得分:1)
在这里试试这个:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background">
<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:ems="10" >
<requestFocus />
</EditText>
</RelativeLayout>
我设置背景图片而不是ImageView
。我希望结果像你期望的那样。它