让ImageView全部适应ScrollView
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"?
? ? android:layout_width="fill_parent" android:layout_height="fill_parent"?
? ? android:fillViewport="true">?
? ? <LinearLayout android:orientation="vertical"?
? ? ? ? android:layout_width="fill_parent" android:layout_height="fill_parent">?
? ? ? ? <ImageView android:layout_width="fill_parent"?
? ? ? ? ? ? android:layout_height="wrap_content" android:src="@drawable/huge"?
? ? ? ? ? ? android:scaleType="fitCenter" android:layout_weight="1" />?
? ? ? ? <LinearLayout android:layout_width="wrap_content"?
? ? ? ? ? ? android:layout_height="wrap_content">?
? ? ? ? ? ? <!-- Insert your content here -->?
? ? ? ? </LinearLayout>?
? ? </LinearLayout>?
</ScrollView>?
?
android:fillViewport="true"? 必须设置的啊
1 楼 j2live 2010-09-16 没办法横向滚动哦...