猿问

android.util.AndroidRuntimeException:不能将刷解雇和操作栏结合

android.util.AndroidRuntimeException:不能将刷解雇和操作栏结合起来

我刚开始使用Android编程,并启动了一个示例Hello World程序,但仍然存在以下错误:

舱单档案:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.helloandroid"
    android:versionCode="1"android:versionName="1.0" ><uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="18" /><application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.helloandroid.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>

MainActivity.Java

package com.example.helloandroid;import android.app.Activity;import android.os.Bundle;import android.widget.TextView;public class MainActivity extends Activity {/** Called when the activity is first created. */@Overridepublic void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);}}

Active_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"

 >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello" /></RelativeLayout>

请帮我找出我哪里出了问题,我现在用的是Android 4.3,API 18,

我尝试过Android4.0.3API 15,Android4.4WAPI 20;我也尝试了如下编辑SDK,但没有成功。

<uses-sdk
   android:minSdkVersion="15"
   android:targetSdkVersion="19" />


汪汪一只猫
浏览 412回答 3
3回答

胡说叔叔

4.4W是AndroidWearSDK。(不要瞄准Android穿戴设备)尝试将目标SDK版本更改为19。检查这里Target SdkVersion设置不要使用API级别为20和平台4.4W(即AndroidWearSDK)作为Android虚拟设备。使用API级别19和平台4.4.2,一切都很好。

qq_花开花谢_0

我也有过同样的问题。但是SDK版本并不是导致这一异常的原因。在AndroidManifest.xml文件中,主题中有ActionBar。android:theme="@style/AppTheme"&nbsp;>将上述行更改为android:theme="@android:style/Theme.DeviceDefault"&nbsp;>这将修复异常。

桃花长相依

我正在使用Java7的AndroidStudioBeta0.8.6,我也遇到了同样的问题。然后就这样修好了。在AndroidManifest.xml文件中,主题中有ActionBar。android:theme="@style/AppTheme"&nbsp;>将上述行更改为android:theme="@android:style/Theme.DeviceDefault"&nbsp;>这将修复异常。正如Gangadhar在prev答卷中提到的,SDK版本不是导致此异常的原因。并用HelloWorld应用程序进行了测试。
随时随地看视频慕课网APP

相关分类

Android
我要回答