Android自定义滚动区域

时间:2013-01-25 16:20:35

标签: android

我正在开发一个可以向左和向下滚动的地图。 什么是最好的观点?

我不想使用WebView。我想使用一些滚动条查看一个位图,即MATCH_PARENT。

1 个答案:

答案 0 :(得分:0)

<?xml version="1.0" encoding="utf-8"?>
<ScrollView android:id="@+id/ScrollView02" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        xmlns:android="http://schemas.android.com/apk/res/android">
<HorizontalScrollView android:id="@+id/HorizontalScrollView01" 
                  android:layout_width="wrap_content" 
                  android:layout_height="wrap_content">
 <ImageView android:id="@+id/ImageView01"
       android:src="@drawable/pic" 
       android:isScrollContainer="true" 
       android:layout_height="fill_parent" 
       android:layout_width="fill_parent" 
       android:adjustViewBounds="true">
  </ImageView>
  </HorizontalScrollView>
  </ScrollView>