我對android編程頗爲陌生,並且偶然發現我的layout
存在問題。Android:ImageView縮放至ScrollView中的屏幕寬度
首先,我有一個Linearlayout
與textview
,2 buttons
和imageview
縮放適合屏幕。
現在我想把這個放在scrollview
之下,所以imageview
可以縮放放大(到屏幕的寬度)。
沒有scrollview
一切都很順利,但與scrollview
,我的imageview
不縮放。
我在做什麼錯了?我在StackOverflow上嘗試了很多解決方案,但我無法使其與ScrollView
一起使用。提前致謝!
<?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="wrap_content">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="@string/pageno" />
<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="@string/texta" />
<Button
android:id="@+id/button2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="@string/textb" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:adjustViewBounds="true"
android:scaleType="fitCenter"
android:src="@drawable/page1" />
</LinearLayout>
</ScrollView>
http://stackoverflow.com/questions/4677269/how-to-stretch-three-images-across-the-screen-preserving-aspect-ratio 這個回答我的問題,感謝您的幫助! – tinus9779 2013-04-07 00:47:32