這裏的圖像是顯示在設計view.i添加的圖片中可繪製folder.but它不工作我的圖片XML文件。不顯示在設計視圖
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:weightSum="2">
<ImageView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/imageView"
android:src="@drawable/german"
android:layout_weight="1"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/imageView2"
android:src="@drawable/german"
android:layout_weight="1"/>
</LinearLayout>
你可以發佈完整的佈局。 – starkshang