サンプルスクリーンショット
任意のレイアウトを使用してこのフォーマットを作成する方法。
以下のレイアウトでは、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>