Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/180.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/oracle/10.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android Studio中的仿真器分辨率问题_Android_Android Studio - Fatal编程技术网

Android Studio中的仿真器分辨率问题

Android Studio中的仿真器分辨率问题,android,android-studio,Android,Android Studio,事情是这样的,在我安装了android studio 1.0.2版,创建了我的android虚拟设备并启动后,我看不到它的字体,它非常小,我该怎么办 这是我的舱单 <activity android:name=".Splash" android:label="@string/app_name" > <intent-filter>

事情是这样的,在我安装了android studio 1.0.2版,创建了我的android虚拟设备并启动后,我看不到它的字体,它非常小,我该怎么办

这是我的舱单

                 <activity
                  android:name=".Splash"
                  android:label="@string/app_name" >
                 <intent-filter>
                 <action android:name="android.intent.action.MAIN" />

                 <category android:name="android.intent.category.LAUNCHER" />
                 </intent-filter>
                 </activity>
                <activity
                android:name=".MyActivity"
                android:label="@string/hello_world"
                 >
              <intent-filter>
               <action android:name="com.example.hp.app2.MyActivity" />

               <category android:name="android.intent.category.DEFAULT" />
               </intent-filter>
               </activity>
              <activity
              android:name=".Menu"
              android:label="@string/hello_world"
            >
             <intent-filter>
            <action android:name="com.example.hp.app2.MENU" />

            <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
             </activity>
             <activity
             android:name=".textPlay"
             android:label="@string/hello_world"
                  >

             </activity>

这是Android的一个bug。


在我的例子中,我将myFont.ttf转换为.ttx,然后再转换为.ttf

在我看来,你只是在模拟器上使用一个非常大的屏幕,然后将其缩小以适合你的屏幕。尝试创建分辨率更小的新仿真器实例?这在我看来很像xxxhdpi。请降低你的模拟器分辨率。这就是问题所在,谢谢你们,这真的很令人不安