1

嗨,我创建了自己的 Android 应用程序。它运行良好,但是当我在多个设备上对其进行测试时,我注意到它不支持多个屏幕,尽管我的应用程序从 assets directory 调用 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>
4

0 回答 0