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.Javapackage 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" />
2 回答
慕村9548890
TA贡献1884条经验 获得超4个赞
android:theme="@style/AppTheme" >
android:theme="@android:style/Theme.DeviceDefault" >
aluckdog
TA贡献1847条经验 获得超7个赞
android:theme="@style/AppTheme" >
android:theme="@android:style/Theme.DeviceDefault" >
- 2 回答
- 0 关注
- 291 浏览
添加回答
举报
0/150
提交
取消