-1

Sample Screenshot
enter image description here

How to create this format using any Layout.

4

1 回答 1

2

下面的布局将使 imageview 只占用它需要的空间,并导致 Textview 扩展并占用所有剩余空间。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:orientation="horizontal" > 
    <TextView 
        android:layout_width="0dp" 
        android:layout_height="wrap_content"
        android:layout_weight="1" 
        android:text="Welcome" /> 
    <ImageView 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:src="@drawable/yourimagename" /> 
</LinearLayout> 
于 2012-07-04T13:43:27.367 回答