内に自分の画像を表示するのに問題がありますLinearLayout
。白の背景色を取得しようとしていImageView
ますがLinearLayout
、画像と背景色が見つかりましたが、画像が引き伸ばされています。
画像が正常に表示されるように比率を調整する良い方法は何ですか? 何か案は?
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#FFFFFF">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
>
<ImageView
android:src="@drawable/day1"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</ImageView>
</LinearLayout>
</ScrollView>