-1

サンプルスクリーンショット
ここに画像の説明を入力してください

任意のレイアウトを使用してこのフォーマットを作成する方法。

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 に答える