您好,我创建了自己的Android应用。它工作得很好但是当我在多个设备上测试它时,我注意到它不支持多个屏幕,尽管我的应用程序从资源目录调用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>