Layout
 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">
 
      <ImageView
        android:layout_width="50dip"
        android:layout_height="wrap_content"
        android:src="@drawable/5015012918223"
      />
    <LinearLayout
      android:orientation="vertical"
      android:layout_width="100dip"
      android:layout_height="wrap_content">
        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:maxLines="1"
        />
     
        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:maxLines="2"
        /> 
    </LinearLayout>
 
      <Button
        android:layout_width="50dip"
        android:layout_height="wrap_content"
        android:text="Click"
      />
 
</LinearLayout>

첨부된 이미지 처럼 layout을 하려면 어떻게 하나요?

검정색 : ImageView
보라/파랑 : TextView
빨강 : Button

대략 적으로 만들어 보려 했는데 쉽지 않군요... ㅡ,ㅡ