我正在显示我想要生成的所需布局的图像我是 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>
提前致谢。