こんにちは、2 番目のアクティビティからメイン アクティビティにいくつかの変数を渡しているため、「アクティビティ ComponentInfo を開始できません」というエラーが発生します。取得している null エラーを修正する方法はありますか
これは、変数が渡されるアクティビティであるメインアクティビティからの私のコードです
Intent Transport = getIntent();
Bundle Reciever = Transport.getExtras();
bChange = Reciever.getBoolean("Changed");
if(bChange == true)
{
minV = Reciever.getInt("Min");
maxV = Reciever.getInt("Max");
minS = Reciever.getInt("MinS");
value = Reciever.getBoolean("distanceM");
bScroll = true;
}
このエラーをバイパスする方法や、他の同様の投稿で見た null 値と呼ばれる方法はありますか
ここに私のxmlがあります
<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.audiovolumecontrol.VolumeControlMAIN"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".com.example.audiovolumecontrol.Options"
android:label="@string/options_name"
android:screenOrientation="portrait" >
</activity>
</application>
ありがとうございます
null値がオンになっているようです
Bundle Reciever = Transport.getExtras();
削除せずにバイパスする方法はありますか