2016-08-19 17 views
1

私はapkをインストールすると私のアプリがクラッシュする理由を理解していないのですか?PendingIntentを追加していない可能性がありますか?

08-19 17:26:06.466 15592-15954/? E/MPlugin: Unsupported class: com.mediatek.common.telephony.IOnlyOwnerSimSupport 
08-19 17:26:06.332 15592-15592/? E/NetworkScheduler.SR: Invalid parameter app 
08-19 17:26:06.332 15592-15592/? E/NetworkScheduler.SR: Invalid package name : Perhaps you didn't include a PendingIntent in the extras? 

main_activity.java

public void Call(View v) 
    { 
     Intent intentcall= new Intent(Intent.ACTION_DIAL); 
     intentcall.setData(Uri.parse("tel:103")); 
     startActivity(intentcall); 

    } 

のxml: 私は logcat呼び出すことactionbuttonし、[次へ]をクリックします私はあなたのメソッドをテストし

<android.support.design.widget.FloatingActionButton 
     android:id="@+id/fab" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_gravity="end|bottom" 
     android:layout_margin="@dimen/fab_margin" 
     android:src="@android:drawable/ic_dialog_email" 
     android:onClick="Call"/> 

答えて

0

を、それが完璧に動作します。構文が正しいです、ファブはエラーがありません。 APMのインストール時にアプリがクラッシュするという事実は、「Fast Run」機能(see...)のためにAndroid Studioの失敗のように見えます。

アプリを停止した後(既に実行中の場合)、または赤い停止ボタンをクリックしてアプリを終了してください。

here

+0

これは解決策ですか? –

+0

いつかそれは解決策になるかもしれません:J – Alien74

関連する問題