When I add the following xml
<uses-permission android:name="android.permission.CALL_PHONE" />
In AndroidMainfest I get this message when I install the android app :
could I do something to hide this message when apk installed because it is not friendly for users.
Then I used this code on my adapter :
public void onClick(View v) {
//do something
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse(PhoneCall));
v.getContext().startActivity(callIntent);
// notifyDataSetChanged();
}
});
Aucun commentaire:
Enregistrer un commentaire