我有一个不显示特定布局的回收站视图。我知道布局是问题,因为我尝试过不同的布局并且正在显示它们。对于错误的布局,我在控制台中没有出现任何错误。
该布局的结构如下:
<android.support.percent.PercentRelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:background="#000"
android:layout_height="match_parent">
<android.support.percent.PercentRelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/border_color"
app:layout_heightPercent="30%">
</android.support.percent.PercentRelativeLayout>
</android.support.percent.PercentRelativeLayout>
我看到它渲染得很好,但可能是它有问题。我希望我的每个回收商的物品都有30%的高度,这就是我使用app:layout_heightPercent="30%"
的原因。如果我删除外部布局,内部布局将占用所有空间。我怎样才能达到30%的高度,因为显然这不起作用。
答案 0 :(得分:0)
试试这个: -
我为父级PercentRelativeLayout设置了高度为100dp。它对我有用。
<android.support.percent.PercentRelativeLayout
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:background="#000"
android:layout_height="100dp">
<android.support.percent.PercentRelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#888888"
app:layout_heightPercent="30%">
</android.support.percent.PercentRelativeLayout>
</android.support.percent.PercentRelativeLayout>
答案 1 :(得分:0)
对于遇到相同问题的任何人,请为外部布局提供ID,或者您的回收商品可能包含的任何布局BundleTable.EnableOptimizations = true;
,
在你的持有人中定义:
outer
并在outer = (PercentRelativeLayout) view.findViewById(R.id.outer);
内以编程方式设置您的身高:
onBindViewHolder