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 に答える