こんにちは、独自の Android アプリを作成しました。うまく機能しましたが、複数のデバイスでテストしたところ、アプリが assets ディレクトリから HTML ファイルを呼び出しても、複数の画面がサポートされていないことに気付きました。
活動 XML
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
tools:context=".ElarabyGroup" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<WebView android:id="@+id/web_engine"
android:layout_width="match_parent"
android:layout_height="match_parent">
</WebView>
</LinearLayout>
マニフェスト
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".ElarabyGroup"
android:label="@string/title_activity_elaraby_group" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>