gpt4 book ai didi

android - 尝试运行我的应用程序时出现 "Unfortunately (my app) has Stopped"错误

转载 作者:行者123 更新时间:2023-11-29 02:07:39 24 4
gpt4 key购买 nike

(Home.java),我正在尝试创建一个最终导致此页面 (Home.java.) 的加载屏幕

package com.androidpeople.splash;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;


public class VirtualSkiInstructor extends Activity {

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

TextView textView = new TextView(this);
textView.setText("Main Activity");
setContentView(textView);
}
}

加载屏幕 (SplashScreen.java)。这是创建启动画面和加载页面的代码

package com.androidpeople.splash;

import your.custom.splash.R;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;

public class SplashScreen extends Activity {

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.splash);

final int welcomeScreenDisplay = 3000;
/** create a thread to show splash up to splash time */
Thread welcomeThread = new Thread() {

int wait = 0;

@Override
public void run() {
try {
super.run();

while (wait < welcomeScreenDisplay) {
sleep(100);
wait += 100;
}
} catch (Exception e) {
System.out.println("EXc=" + e);
} finally {

startActivity(new Intent(SplashScreen.this,
VirtualSkiInstructor.class));
finish();
}
}
};
welcomeThread.start();

}
}

(splash.xml)

<LinearLayout android:id="@+id/LinearLayout01"
android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:gravity="center" android:background="#6B8AAD">
<TextView android:id="@+id/TextView01" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:textSize="18sp"
android:textStyle="bold" android:textColor="#fff"></TextView>
</LinearLayout>

(字符串.xml)

<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">Compass</string>
<string name="app_name">Compass</string>
</resources>

最佳答案

添加以下代码以将 VirtualSkiInstructor Activity 添加到您的 list 文件中。

<activity
android:name=".VirtualSkiInstructor"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>

关于android - 尝试运行我的应用程序时出现 "Unfortunately (my app) has Stopped"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9131432/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com