我正在使用这种布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:textColor="#372c24" />
<View
android:id="@+id/space"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="5"
android:background="@android:color/transparent" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="4"
android:orientation="horizontal"
android:background="@drawable/shape_popup">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="2" />
<ImageView
android:contentDescription="@string/app_name"
android:id="@+id/rateStar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:background="@drawable/image" />
</LinearLayout>
</LinearLayout>
但是图像不显示,为什么?