生成したい目的のレイアウトの画像を表示しています Android開発は初めてです このためのXMLもリストしています... TextViewとWebViewを修正できますが、修正できません左側のボタンを修正してください。誰かが私がしなければならない必要な追加と、XML ファイルのどこを教えてくれますか。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<TextView
android:id="@+id/txtItem1"
android:text="ITEM"
android:layout_width="fill_parent"
android:layout_height="50dip"
android:textColor="#009966"
android:background="@drawable/txtbackground"
/>
<!-- WebView -->
<LinearLayout android:id="@+id/thumbnail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="3dip"
android:layout_alignParentLeft="true"
android:background="@drawable/image_bg"
android:layout_marginTop="50dip"
>
<WebView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webkit"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
/>
</LinearLayout>
</RelativeLayout>
前もって感謝します。