我有以下xml文件,问题是我的ImageView
没有像我期望的那样显示。
我最终得到1行,即20%/ 80%左边的部分包含0 * 0 Imageview。 ScreenDump
我期望它看起来像是一个ImageView缩放到行的高度的50%。
我尝试删除ImageView中的layout_width
/ layout_height
,但如果我这样做,我最终会Java.Lang.RuntimeException: Binary XML file line #1: You must supply a layout_width attribute
表示我必须添加layout_width
。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white">
<android.support.percent.PercentRelativeLayout
android:id="@+id/Collapser"
android:layout_width="match_parent"
android:layout_height="120dp"
android:background="@android:color/transparent">
<LinearLayout
android:id="@+id/LowerFirstContainer"
app:layout_widthPercent="20%"
android:layout_width="0dp"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical"
android:background="#00ff00">
<ImageView
android:layout_width="0px"
android:layout_height="0px"
android:background="#0000ff"
android:src="@drawable/Icon"
app:layout_heightPercent="50%"
app:layout_aspectRatio="100%">
</ImageView>
</LinearLayout>
</android.support.percent.PercentRelativeLayout>
</LinearLayout>