특정 XML 파일에서 레이아웃을 실행하면 다음과 같은 결과가 나타납니다.
This tag and its children can be replaced by one <TextView/>
and a compound drawable
다음 xml 코드에 대해 수행해야하는 변경 사항 :
<LinearLayout android:id="@+id/name_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:background="@drawable/grouplist_single_left_grey_area" >
<ImageView android:id="@+id/photo_image"
android:layout_width="@dimen/thumbnail_width"
android:layout_height="@dimen/thumbnail_height"
android:paddingBottom="5dip"
android:paddingTop="5dip"
android:paddingRight="5dip"
android:paddingLeft="5dip"
android:layout_marginRight="5dip"
android:clickable="true"
android:focusable="true"
android:scaleType="fitCenter"
android:src="@*android:drawable/nopicture_thumbnail"
android:background="@drawable/photo_highlight" />
<TextView android:id="@+id/name"
android:paddingLeft="5dip"
android:layout_weight="1"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
다음은 화면에 나타나는 모습입니다.
카메라 아이콘이 기본값입니다. 이를 클릭하면 사용자에게 다른 이미지를 선택할 수있는 옵션이 제공됩니다.