私は持っていて、プレーヤーが自分のスコアを入力できる場所をその中ImageView
に追加したいと思います。EditText
ボックスのレイアウトはすでにありますが、画像上にあります。
1476 次
1 に答える
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
。期待通りの結果になることを願っています。それ。
于 2012-12-06T07:09:30.253 に答える