このアプリをテストしている間、Forcecloseエラーが発生し続けます。アプリは正常に開きますが、3〜4秒後に強制終了エラーダイアログボックスが表示されます。コードが含まれています。どんな助けでもありがたいです。ありがとう
マニフェスト
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cy.headset"
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" >
<receiver android:name=".Main" >
<intent-filter>
<action android:name="android.content.Intent.ACTION_BATTERY_CHANGED" />
</intent-filter>
</receiver>
<activity
android:name="com.cy.headset.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>
Javaコード
package com.cy.headset;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.widget.Toast;
public class Main extends BroadcastReceiver{
@Override
public void onReceive(Context context, Intent i) {
Toast.makeText(context, "Headphone connected", Toast.LENGTH_LONG).show();
}}
XMLUIファイル
<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"
tools:context=".Main" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_margin="10dp"
android:layout_marginTop="151dp"
android:text="@string/hello_world"
android:textAlignment="center" />