这是代码。
package com.example.appfit;
import android.app.Activity;
import android.os.Bundle;
class Main extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.select);
}
}
我无法得到,当我试图运行这个时,我不幸地停止了,问题。这里还有select.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/tvSelect"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="@string/select"
android:textSize="18sp"
android:layout_gravity="center"
/>
</LinearLayout>
可能有什么问题?
还有清单
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.appfit"
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"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.appfit.Main"
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>
我不知道如何获得错误?我真的是新手。
答案 0 :(得分:0)
确保您已在清单文件中声明了您的活动。
答案 1 :(得分:0)
可能的问题可能是您没有在清单中提到主启动器。检查清单中给出的路径。并且还要确保在Strings.xml文件中提到了字符串select。
答案 2 :(得分:0)
您可能需要查看Android Manifest文件。您的活动需要正确注册为“启动活动”。它应该在Manifest中看起来像这样:
<activity
android:name="com.example.appfit.Main"
android:label="@string/your_app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
答案 3 :(得分:0)
更改
class Main extends Activity{
到
public class Main extends Activity{