首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 平面设计 > 图形图像 >

让ImageView所有适应ScrollView

2012-08-30 
让ImageView全部适应ScrollViewScrollView xmlns:androidhttp://schemas.android.com/apk/res/android

让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>

热点排行