1

我正在开始 android 开发,我正在关注 developer.android.com 上的第一个培训指南。

我创建了一个这样的应用程序:

android create project --target <target-id> --name MyFirstApp \
--path <path-to-workspace>/MyFirstApp --activity MainActivity \
--package com.example.myfirstapp

当我将它安装在我的 nexus 7 上时,它全部放大模糊。我该如何解决?

4

2 回答 2

1

这很模糊,因为该应用程序最初是为手机大小的设备创建的,当您在平板电脑上运行它时,该应用程序被放大以适应 7 英寸屏幕。

于 2012-12-29T20:47:20.140 回答
1

原来我需要supports-screens在我的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.gpsinsight.gpsandroid"                                                             
      android:versionCode="1"
      android:versionName="1.0">
    <supports-screens
        android:smallScreens="true"
        android:normalScreens="true"        android:largeScreens="true"
        android:xlargeScreens="true" />
    <application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
        <activity android:name="MainActivity"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>
于 2012-12-29T22:53:27.087 回答