ライナーレイアウト/相対レイアウト内に画像を配置したいAndroid:画像サイズの定義
2つの画像を連続して保存したい。 これらの画像の幅を定義すると、両方とも一緒に親を水平に塗りつぶすようになります。
イメージ間の必要な間隔にlayout_marginを使用できます。しかし、私はそれが親を埋めるように幅を定義することができません。
私は別のディップで裁判を行う必要がありますが、水平
に
ライナーレイアウト/相対レイアウト内に画像を配置したいAndroid:画像サイズの定義
2つの画像を連続して保存したい。 これらの画像の幅を定義すると、両方とも一緒に親を水平に塗りつぶすようになります。
イメージ間の必要な間隔にlayout_marginを使用できます。しかし、私はそれが親を埋めるように幅を定義することができません。
私は別のディップで裁判を行う必要がありますが、水平
に
試してみると2 ImageViews
を入れあなたのxmlでこのように
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:weightSum="2">
<ImageView android:layout_height="wrap_content" android:id="@+id/imageView1"
android:src="@drawable/icon" android:layout_width="0dp"
android:layout_weight="1" android:scaleType="fitXY"></ImageView>
<ImageView android:layout_height="wrap_content" android:id="@+id/imageView1"
android:src="@drawable/icon" android:layout_width="0dp" android:scaleType="fitXY"
android:layout_weight="1"></ImageView>
</LinearLayout>
セットLinearLayout
のオリエンテーション値プロパティ
android:layout_width = "fill_parent"
android:layout_height = "wrap_content"
android:layout_weight = "1"
使用
android:layout_weight="1" for parent
and android:layout_weight="0.5" for childs
+1すてきな答え..イメージの高さの幅を与える方法を置く方がいいでしょう。 – MKJParekh
利用アンドロイド:layout_weight、この記事を参照してください。http://stackoverflow.com/questions/3995825/what-is-androidlayout-weight-meaning – Houcine