我是android新手,我试图将图像居中并提示垂直和水平。如果有人可以提供帮助,我将非常感激。
答案 0 :(得分:0)
您不能将ImageView放在EditText中。 相反,您可以将EditView和TextView放在RelativeLayout中并将它们居中,如下所示:
<?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:orientation="vertical">
<EditText
android:id="@+id/my_edit_text"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:gravity="center"
android:text="This is some edit text" />
<ImageView
android:id="@+id/my_image_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:src="@drawable/com_facebook_button_icon_blue" />
</RelativeLayout>
由于我们将EditText的宽度和高度设置为与RelativeLayout匹配,因此它看起来好像ImageView在EditText中。
如果你想把文字放在图片下面,只需将这一行添加到TextView:android:layout_below =“@ + id / my_image_view”。