このスレッドの見出しは馬鹿だとは思いますが、コードを修復できません。Android HelloWorld
package HelloAndroid;
import android.app.Activity;
import android.os.Bundle;
import android.widget.*;
public class HelloAndroidActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView view = new TextView(this);
view.setText("LOL View Working!");
setContentView(view);
}
}
私の問題は、エミュレータでエラーが発生していることです。プロセスが応答していないか、何かsimilairです。なぜ?!このアプリケーションはとても小さいので、なぜ動作しないのですか?私を助けてください。
EDIT:AndroidManifest.xml
で
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="HelloAndroid.Main"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".HelloAndroidActivity"
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>
を試している必要があります'android.widget。*' importをあなたが必要とする特定のクラスだけに置き換えたいと思っています。 – Jave
は、logcatの詳細を表示します。 –
正確なエラーが分かっていれば助けになります。すべてがマニフェストに正しく追加されていますか? – JonWells