レイアウトを作成し、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>
前もって感謝します