我有一個RelativeLayout一個PercentRelativeLayout內如下面的代碼顯示的RelativeLayout不擴大,以填補父時的觀點被添加到父
<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="wrap_content"
android:orientation="vertical"
android:padding="10dp">
<RelativeLayout
android:id="@+id/clickBox"
android:layout_height="match_parent"
android:background="@color/PaleBlack"
android:fillViewport="true"
app:layout_widthPercent="35%">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:scaleX="0.8"
android:scaleY="0.8"
android:src="@mipmap/ic_open"/>
</RelativeLayout>
</android.support.percent.PercentRelativeLayout>
但是,如果我然後以編程方式將一個TextView添加到PercentRelativeLayout
,則RelativeLayout
不會擴展垂直填充父項PercentRelativeLayout
,然後結果如下所示
我該如何解決這個問題,以便RelativeLayout
填充父母的身高?
難道不清楚嗎? RelativeLayout **不會**展開(至少,如果您設置了'android:layout_width =「match_parent」')。 ImageView **不**。 –
@ModularSynth不,我把一個黑色的背景來確保它不會擴展 –
@TimCastelijns不幸的是沒有第二個XML。視圖是在佈局繪製後通過代碼動態添加的 –