程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-根據教程寫的代碼報錯

android-根據教程寫的代碼報錯

編輯:編程綜合問答
根據教程寫的代碼報錯

先看一下代碼:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.thenewboston.sammy"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"

這是根據一個教程寫的,但是報錯 : error: Error: No resource found that matches the given name (at 'theme' with value '@style/AppTheme'). android:theme="@style/AppTheme" >

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

最佳回答:


你要在styles.xml裡寫個AppTheme
形如:

    <resources xmlns:android="http://schemas.android.com/apk/res/android">
       <style name="AppTheme" parent="android:Theme.Light">
       <item name="android:windowNoTitle">true</item>
       <item name="android:windowFullscreen">false</item>
       <item name="android:windowContentOverlay">@android:color/transparent</item>
       </style>
    </resources>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved