我正在使用2.3的api示例。在示例中,它使用r.drawable来加载照片。我的照片作为webview放在一个单独的类中。所以我的问题是如何正确地编写它来调用“Logophoto.java”而不是“R.drawable.photo1”
由于
// Resource identifiers for the photos we want to display
private static final int[] PHOTOS_RESOURCES = new int[] {
R.drawable.photo1,
R.drawable.photo2,
R.drawable.photo3,
R.drawable.photo4,
R.drawable.photo5,
R.drawable.photo6
};
webview显示一组放在html表格中的图像,其webview允许缩放和清晰的分辨率。
public class Logophoto extends Activity {
private WebView mWebView;
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.enlisted);
mWebView = (WebView) findViewById(R.id.webview);
WebSettings webSettings = mWebView.getSettings();
webSettings.setSupportZoom(true);
webSettings.setBuiltInZoomControls(true);
mWebView.loadUrl("file:///android_asset/photologo.html");
}
}