A ringtone or ring tone is the sound made by a telephone to indicate an incoming call or text message. Not literally a tone nor an actual (bell-like) ring anymore, the term is most often used today to refer to customizable sounds used on mobile phones.

learn more… | top users | synonyms

-4
votes
0answers
18 views

Deleting Default ringtones in android [closed]

I am using a notification sound in a project. For the notifications,i used a default sound of my Android phone. It runs fine foe some time. But after some time when I was running the code, my default ...
0
votes
0answers
17 views

Android inconsistent played sound behaviour

Im creating an app, where user is notified with AlarmManager. When i use Notification object, everything works fine, but when the main activity is visible, there is no need to use Notification, so i ...
1
vote
1answer
40 views

Sometimes File.exists() returns false for system ringtone

I have received log from the user about music not always playing. Strangely, cause seems to be missing system ringtone file. Path to file is /system/media/audio/alarms/Alarm_Classic.ogg I load it ...
1
vote
1answer
61 views

Customize Ringtone Preference's Ringtone List

Is it possible to customize/control the list of ringtones besides ringtoneType? For example, to show only the subset of ringtones(in the red box) instead of the entire list. Currently a ...
1
vote
1answer
55 views

How to set ringtone programmatically in Blackberry?

I want to set ringtone programmatically in Blackberry through my app, but I am not finding any sample code. I tried this, but it's not working: ...
0
votes
0answers
13 views

ringtone not saved oncreatecontextmenu

I'm trying to set a sound as ringtone. But the code is works, but the ringtone isn't saved in my folder. How do I set the ringtone as active ringtone String ...
0
votes
1answer
54 views

How to start, stop playing sound (ringtone) : Android

I started playing sound by using: (Working) RingtoneManager.getRingtone(this, Uri.parse(callerRing)).play(); And trying to stop playing sound using: (Not working) ...
0
votes
0answers
84 views

Copy a file to internal memory and use it as ringtone

I am trying to save a mp3 file from my raw directory to the internal memory. This works ok. Then I want to set that mp3 file as a ringtone, and it appears in the System available ringtones list, but ...
0
votes
1answer
68 views

How to stop the ringtone default in windows phone

I trying to play a ringtone for the purpose of alert user when the notification coming. What i wanna to achieve is the ringtone can be play by user and it not a default ringtone. I successfully to ...
0
votes
0answers
19 views

Custom ringtones if phone didn't start up completely yet

I add ringtones by code and assign them as call ringtones and notifications. It works very well, the problem is that the mp3 files are in the sdcard in theses folders: sdcard/media/audio/ringtones ...
1
vote
1answer
59 views

saveRingtone in windows phone

How to prevent adding same custom ringtone in windows phone? Every time i Click the button, it will save the ringtone in the system ringtone list. But what i found that in the system ringtone list ...
0
votes
1answer
87 views

System ringtone list in windows phone

I am trying to do an app, that lets the user select the ringtone from the system ringtone list in windows phone to alert user when the Toast notification coming. What i confusing is it's possible to ...
0
votes
0answers
49 views

How can I force the alarm tone to be turned on so the user can't turn the sound off?

I'm trying to build an alarm application. I've managed to get a default alarm tone to play by doing this: public void playAlarm() { Uri notification = ...
2
votes
2answers
469 views

How to increase ringtone volume from low to high from Android application

Does anybody know if there is a way to set incoming call ringtone volume increasing from low to high programmatically from Android application? Any suggestions are appreciated.
0
votes
1answer
78 views

How to stop sound in Android after

I am trying to build an alarm application. When the alarm turns on, the user has to scan a matching QR code before it is turned off. I've taken a look at this link to get the sound playing: How to ...
1
vote
1answer
45 views

How do I check if ringtone pointed by uri exists?

I'm able to play a ringtone using the following code rone = RingtoneManager.getRingtone(this.getContext(), Uri.parse(one)); rone.play(); How do I check if the audio file pointed by uri exists? When ...
0
votes
1answer
67 views

How can I set off an alarm i.e. play an alarm tone in Android?

I want to build an alarm application but I don't know how to set off an alarm ringtone when the alarm has gone off. How do I do this?
2
votes
1answer
82 views

How to play a ringtone which is only for Push Notification Arrivals of my Application?

I am Working on Android . And I have implemented Push Notifications feature in my app using GCM. And My intention is to play a ringtone from app Assets or device Sdcard when only for my Application ...
1
vote
1answer
87 views

Setting Video ring tone programmatically

Is there any iOS framework or some 3rd party API, that allows the application to enable video ring tone? Will Apple approve this? A similar app on Android is "Vringo" which enables to set video ring ...
-1
votes
1answer
54 views

how to turn on of turn off the ringing tone and vibrate tone in iphone?

the APP require me to realize a setting function,which can turn on/off the ringing tone and the same to vibrate tone, Is someone konw the answer?Thanks!
1
vote
1answer
285 views

Troubles play sound in silent mode on Android

I am writing an android application to simply play an alarm no mater what mode the phone even if it is in silent mode. I found this question and used the code from the answer to override the current ...
0
votes
1answer
85 views

System volume linked with ringtone volume

Is there any way to check if system volume is linked with ringtone volume?
0
votes
0answers
115 views

Split ringer and notification volume programatically on Android 4.2

Is there any option how to split ringer and notifications programmatically on Android 4.2? The traditional way (setStreamVolume(AudioManager.STREAM_NOTIFICATION ...) became useless since the Android ...
0
votes
2answers
156 views

How to override SMS ringtone

What I want to do: To set my ringtone to incoming SMS even though there is another one in the SMS app. What I tried: In SMS reciever, I set volume of STREAM_NOTIFICATION to 0 and than tried to play ...
0
votes
1answer
84 views

Retrieve the name of playing ringtone in PhoneStateListener

Essentially the title says it all. I want to be able to retrieve the currently playing ringtone in the phonestatelistener class. One solution might be to simply retrieve DEFAULT URI from the ...
0
votes
3answers
191 views

how to detect the end of outgoing ringtone?

I want to make a call with my program and after that recognize the call status . I want to detect the end of outgoing ringtone. How to detect the end of outgoing ringtone ? I use of Flowing code ...
0
votes
3answers
354 views

How to display List of default ringtones in iOS?

Is it possible to play some default sounds, when some notification is received? I just want to show the list of default ring tones to allow the user select one to set as ringtone for this ...
0
votes
0answers
47 views

set ringtone to a contact using AddressBook framework?

In my app I want to change a contact's ringtone through AddressBook framework. But there is no constant property of person available in the framework. I want to ask, that is this possible, if yes then ...
1
vote
1answer
94 views

Why does adding an empty for loop fix this code?

I am trying to play a ringtone selected by the user. When I use this code: RingtoneManager ringtoneManager = new RingtoneManager(this); Uri uri = ringtoneManager.getRingtoneUri(position); if(uri == ...
0
votes
1answer
228 views

RingtonePreference not saving in PreferenceActivity

I am using PreferenceScreen to set some user preferences in my Android app. It works perfectly for several ListPreference and CheckboxPreference items, however I cannot get RingtonePreference to work ...
0
votes
0answers
129 views

Setting the phone ringtone… as saved by RingtonePreference?

Im making an android app in which the user can have different profiles(as used to be in old nokia phones)...just this profiles will change on basic of location. I m stuck at am point... i have ...
0
votes
1answer
98 views

My added ringtone disappears when rebooting

I add a ring tone from a raw file like this code below, and it works. Once I added it, I can open Android System Ringtones list and it appears there, so I (or any other app) can use it. The problem is ...
2
votes
0answers
95 views

Ringtone plays over and over again (looping infinitely)

I have an Android app that plays a notification ringtone (RingtoneManager.TYPE_NOTIFICATION) when certain events are sent to a BroadcastReceiver. The code that plays the ringtone basically does: ...
1
vote
0answers
90 views

How can I change android ringtone preference icon?

I am trying to apply my custom theme in the preference screen. I got some hint from here(there are some Japanese but you can read the codes), but I don't know how to do it in ringtonepreference. I ...
1
vote
0answers
199 views

RingtoneManager.ACTION_RINGTONE_PICKER crashes on some devices

the following code keeps crashing on some devices (instantly closes the ringtone picker dialog), on most of the devices it's working as expected. I didn't manage to find a common common denominator ...
1
vote
0answers
184 views

Default ringtone doesn't play

I have been making ringtone application and I have a problem. I can play sounds in listitem and I can set ringtone but when I check from telephone settings, it doesn't play. Where is the problem, ...
1
vote
1answer
168 views

How do I stop the currently playing ringtone?

I'm writing an app that sometime fires reminders that are supposed to play ringtones. I can start the ringtone OK, but can't stop it. I have a dismiss method in my fragment that should stop the ...
0
votes
0answers
133 views

How to add mp3 to ringtonepreference list?

I have a hidden directory that contains some mp3 resources and I want to make those mp3 files displayed in my alarm application. How can I add my mp3 files into ringtonePreference's ringtone list? I ...
1
vote
1answer
111 views

In J2ME app, is that possible to set alarm's ringtone as MP3 tone?

In J2ME app, I want to give freedom to user to set his/her own liking tone though it is .mp3 or .wav sound with high bit rate & size. It is possible in J2ME with javax.microedition.media package?? ...
0
votes
1answer
186 views

Programmatically muted ringtone still plays on some phones

I am creating a "do not disturb" app. so the normal thing to do is to set the phone on silent when activated and then when a call gets through that suppose to ring I simply change the ringer state to ...
0
votes
1answer
92 views

How can a ringtone be stored as a string?

In my application I need the user to select a ringtone as an application sound. I use RingtoneManager.ACTION_RINGTONE_PICKER to get the selected ringtone. It returns the ringtone's Uri, and I can turn ...
3
votes
1answer
480 views

deleting a ringtone programmatically in android

I know inserting a ringtone programmatically, but I want to know about deleting a specific ringtone from the system ringtone list. What I know, is the title of the ringtone. I googled a lot about ...
0
votes
2answers
182 views

generating diffrent tone in a time interval in matlab

how to generate continuous tone with below conditions as i only able to create the tone from time 0 to 1. Ho to continuous generate it? Create a 3 second signal containing three tones; Tone 220 Hz for ...
0
votes
1answer
244 views

Android Ringtone Play crash on 4.2

I am having problems playing a ringtone on my Nexus 4 running Android 4.2. When I try and play a RingTone I see the following exception: java.lang.NullPointerException at ...
0
votes
1answer
35 views

I want to know if there is a ANDROID API which allow caller to listen a different tone while before another person picks up phone [closed]

I want to know if there is a ANDROID API which allow caller to listen a different tone while before another person picks up phone? An ANdroid API or a code to replace tone by another one? Thanks.
1
vote
1answer
60 views

Cursor to all notification sounds

I use this code to get Cursor to all ringtones RingtoneManager rm = new RingtoneManager(context); Cursor c = rm.getCursor(); It works well, but what I need is to get Cursor to all ...
0
votes
0answers
84 views

Android ringtone player does not playback in stereo format [closed]

I am planning to playback the stereo ringtone as a stereo playback, but seems like default android ringtone player does not support stereo playback for ringtones. I created sample audio file using ...
0
votes
0answers
105 views

Play ringtone issue

I have different sounds(mp3) at my application, I can make ringtone them and but when I played ringtone it is playing only one second and I hear "din" sound only (all of the them). Where is the ...
0
votes
1answer
92 views

Checking android emulator is Silent or not

I am developing an android application for which i want to know whether the android phone is silent or not. I need to know how can I check this thing on android emulator by Java Code. Also how I could ...
3
votes
2answers
558 views

Why RingtoneManager.setActualDefaultRingtoneUri could not work? [android API-8]

This question could be duplicate of this question but I see some difference in code, so I put a new question. Problem is that I cannot set picked ringtone in RingtonePicker. I use Support Library and ...

1 2 3 4 5