我有以下幾點:如何設置線性佈局的頁腳?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ImageView android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/imageView1" android:background="@drawable/header"></ImageView>
<LinearLayout android:layout_height="wrap_content" android:id="@+id/linearLayout1" android:layout_width="match_parent">
</LinearLayout>
<EditText android:layout_height="wrap_content" android:layout_width="match_parent" android:id="@+id/editText2" android:text="EditText"></EditText>
<EditText android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/editText1" android:text="EditText"></EditText>
<LinearLayout android:layout_height="wrap_content" android:id="@+id/linearLayout2" android:layout_width="match_parent" android:layout_gravity="bottom">
<ImageView android:layout_height="wrap_content" android:layout_width="wrap_content" android:background="@drawable/footer" android:id="@+id/imageView2" android:layout_gravity="bottom"></ImageView>
</LinearLayout>
我希望把圖像在頁腳,而不是之後的文本框中。請幫助我是新來的機器人,我正在尋求幫助。
把屏幕的快照。 – Ronnie