我是Android編程的新手,並且已經爲這個問題找到了很多答案,但我找不到答案。也許我使用了錯誤的搜索詞,因爲它看起來像是一個非常基本的請求。 我的設計(作爲示例),我會在我的相對佈局中定義兩個文本字段,然後是圖像,我希望圖像跨越屏幕的其餘部分。這是我到目前爲止:Android UI佈局問題
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/widget29"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
>
<ImageView
android:id="@+id/widget38"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/widget37"
android:layout_alignParentLeft="true"
>
</ImageView>
<TextView
android:id="@+id/widget37"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="second view"
android:layout_below="@+id/widget36"
android:layout_alignParentLeft="true"
>
</TextView>
<TextView
android:id="@+id/widget36"
android:layout_width="fill_parent"
android:layout_height="50px"
android:text="first view"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
>
</TextView>
</RelativeLayout>
如何告訴我的ImageView跨越填充屏幕的其餘部分。如果我將高度和寬度定義爲「fill_parent」,則會填充兩個文本視圖。 在此先感謝您提供的任何幫助。
喬恩