1
알림을 시작하는 방법이 있습니다. 그러나 이제 버튼 컨텍스트 메뉴를 길게 눌러서 바인딩하고 싶습니다. 어떻게해야합니까?Android 길게 누르면 버튼 상황에 맞는 메뉴
public void ringtone(){
try {
Uri notification = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
Ringtone r = RingtoneManager.getRingtone(getApplicationContext(), notification);
r.play();
} catch (Exception e) {
e.printStackTrace();
}