に追加されたときに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>
良いである、下に示すような外観を与える
PercentRelativeLayout内部
RelativeLayoutを持つ親を埋めるために拡大していません
しかし、PercentRelativeLayout
にTextViewをプログラムで追加すると、RelativeLayout
は親を垂直方向に塗りつぶしませんPercentRelativeLayout
、その結果は次のようになります
RelativeLayout
はどのようにしてその高さで親を満たしますか?
これは明らかですか? RelativeLayout **は展開されます(少なくとも、あなたが 'android:layout_width =" match_parent "'を設定した場合は、少なくとも)。 ImageView **はありません**。 –
@ModularSynthいいえ、私は確かめるために黒い背景を置き、それは拡張しません –
@TimCastelijns残念なことに第2のXMLはありません。ビューは、レイアウトが描画された後にコードを介して動的に追加されます。 –