码迷,mamicode.com
首页 > 其他好文 > 详细

二〇一五年五月二十二日--bug--启动页面出现模糊的问题

时间:2015-05-23 11:14:04      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:

启动页面出现模糊的问题:
原因是 :android:theme="@style/TranslucentTheme"
  1.  1 <application
     2         android:name=".DoctorApplication"
     3         android:allowBackup="false"
     4         android:icon="@drawable/logo"
     5         android:label="@string/app_name"
     6         android:theme="@style/AppTheme">
     7         <activity
     8             android:name=".LoadingActivity"
     9             android:label="@string/app_name"
    10             android:theme="@style/TranslucentTheme">
    11             <intent-filter>
    12                 <action android:name="android.intent.action.MAIN"/>
    13                 <category android:name="android.intent.category.LAUNCHER"/>
    14             </intent-filter>
    15         </activity>

     

 
 
修改后:
  1.  1 <application
     2         android:name=".DoctorApplication"
     3         android:allowBackup="false"
     4         android:icon="@drawable/logo"
     5         android:label="@string/app_name"
     6         android:theme="@style/AppTheme" >
     7         <activity
     8             android:name=".LoadingActivity"
     9             android:label="@string/app_name"
    10               android:screenOrientation="portrait"
    11             android:theme="@android:style/Theme.Translucent.NoTitleBar">
    12             <intent-filter>
    13                 <action android:name="android.intent.action.MAIN" />
    14                 <category android:name="android.intent.category.LAUNCHER" />
    15             </intent-filter>
    16         </activity>

二〇一五年五月二十二日--bug--启动页面出现模糊的问题

标签:

原文地址:http://www.cnblogs.com/androidsuperman/p/9bda857f7ebed77b87030e8029fa098a.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!