我真的需要帮助才能让 anImageview
坐在EditText
and之下Button
。我真的需要这个LinearLayout
。这是我到目前为止所拥有的,但图像没有显示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientaion="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/Button"
android:layout_weight="0"/>
<EditText
android:id="@id/edit_message"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/edit_message"
android:layout_weight="0"/>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="center|bottom" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/Android" />
</LinearLayout>
</LinearLayout>