读书人

让ImageView所有适应ScrollView

发布时间: 2012-08-30 09:55:54 作者: rapoo

让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 没办法横向滚动哦...
不过倒是解决了我scrollview内包含imageview图片放大底下会出现空白的问题
就是imageview放大后横向滚动不知道怎么实现 2 楼 wang_peng1 2010-09-16 <ScrollView ...>

<HorizontalScrollView ...>

YOUR TABLE HERE

</HorizontalScrollView>

</ScrollView>

读书人网 >图形图像

热点推荐