0

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

我不想使用 WebView。我想使用一些滚动查看带有 MATCH_PARENT 的位图。

4

1 回答 1

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>
于 2013-01-25T16:51:29.133 回答