4

レイアウトを作成し、layout_weight と weight_sum を使用しています。線形レイアウトの向きを水平にしているので、イメージビューの幅を画面の 1/3 に設定できます。しかし、imageview の高さを画面の 1/3 に設定する方法がわかりません。

レイアウト xml からイメージビューの高さを画面の 1/3 に設定するのを手伝ってください。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" 
    android:weightSum="1">

    <ImageView
    android:id="@+id/savedImageView"
    android:layout_width="0dip"
    android:layout_height="wrap_content"
    android:layout_weight=".33"
    android:background="@drawable/background" />

</LinearLayout>

前もって感謝します

4

3 に答える 3

14

これを使って:

int displayWidth = getWindowManager().getDefaultDisplay().getHeight();

ImageView imageView = (ImageView)findViewById(R.id.image);

imageView.getLayoutParams().height = displayWidth / 3;
于 2013-07-30T10:51:38.413 に答える
-2

このようなものが必要ですか、それとも私があなたを助けることができるようにあなたの問題をもっと詳しく教えてください

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" 
    android:weightSum="1">

    <ImageView
        android:id="@+id/savedImageView"
        android:layout_width="0dip"
        android:layout_height="414dp"
        android:layout_weight="0.52"
        android:background="@drawable/ic_launcher" />

</LinearLayout>
于 2013-07-30T10:49:03.997 に答える