tmap.createBitmap(bmp, scrollX, scrollY, dm.widthPixels, dm.heightPixels);
// ÖØ»
invalidate();
}
}
}
3. ÐÞ¸Ä AndroidManifest.xml £¬Ê¹Ö®ÈçÏ£º
< xml version = "1.0" encoding = "utf-8" >
< manifest xmlns:android = "http://schemas.android.com/apk/res/android"
package = "com.pat.gui"
android:versionCode = "1"
android:versionName = "1.0" >
< application android:icon = "@drawable/icon" android:label = "@string/app_name" >
< activity android:name = ".ScrollPicture"
android:label = "@string/app_name"
android:screenOrientation = "sensor"
android:configChanges = "orientation" >
< intent-filter >
< action android:name = "android.intent.action.MAIN" />
< category android:name = "android.intent.category.LAUNCHER" />
intent-filter >
activity >
application >
< uses-sdk android:minSdkVersion = "7" />
< uses-permission android:name = "android.permission.CHANGE_CONFIGURATION" />
manifest >
×¢Òâ AndroidManifest.xml ÎļþÖУ¬ 3 ÐдÖÌå×Ö¡£ÆäÖÐµÄ android:screenOrientation="sensor" ±íʾ£¬ÓÉÊÖ»úµÄÖØÁ¦¸ÐÓ¦Æ÷À´¾ö¶¨ÆÁÄ»ÊÇÒÔ landscape »òÕß portrait ·½Ê½ÏÔʾ¡£
ÔËÐнá¹û£º
½á¹û±íÃ÷¿ÉÒÔͬʱÔÚˮƽºÍ´¹Ö±·½ÏòÒÆ¶¯Í¼Æ¬¡£
|