我正嘗試用兩個視圖填充活動,左側爲ImageView
,右側爲TextView
。圖像的大小應該填滿整個垂直空間。文本應該佔用剩下的空間。看了幾個教程後,似乎我需要的是一個水平方向的LinearLayout
,並且TextView
的layout_weight
屬性是一個正整數。Android佈局;圖片佔用整個屏幕
這是我到目前爲止有:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:src="@drawable/charsheet" />
<TextView
android:id="@+id/ipsum"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="@string/ipsum" />
</LinearLayout>
的問題,但是,圖像,創建空白到填滿整個屏幕的左側和右側。 TextView
沒有剩餘空間。
我也嘗試使用RelativeLayout
與ImageView
的toStartOf
屬性設置爲TextView
的ID,但隨後的文字填滿整個屏幕來代替。
當我開始進行這項活動時,我不會認爲這會是一件很複雜的事情,但我們在這裏。任何幫助,將不勝感激。
你想要的形象被裁剪,以適應或調整大小以適應? –
調整大小,我想。我想看到整個圖像,只是減去正在添加的空白空間 –