Android 铃声首选项 - 获取数据
我有一个铃声偏好。我怎样才能获得选择?我有以下类型的代码:
if(preferences.getString("ringtonePref", "n/a") != ??)
{
Toast.makeText(TutorialPref.this, "Chosen ringtone: silent", Toast.LENGTH_LONG).show();
}
else if(preferences.getString("ringtonePref", "n/a") != "DEFAULT_RINGTONE_URI" )
{
Toast.makeText(TutorialPref.this, "Chosen ringtone: + default", Toast.LENGTH_LONG).show();
}
i have a ringtone preference. How can i get the selection? I have the following kind-of-code:
if(preferences.getString("ringtonePref", "n/a") != ??)
{
Toast.makeText(TutorialPref.this, "Chosen ringtone: silent", Toast.LENGTH_LONG).show();
}
else if(preferences.getString("ringtonePref", "n/a") != "DEFAULT_RINGTONE_URI" )
{
Toast.makeText(TutorialPref.this, "Chosen ringtone: + default", Toast.LENGTH_LONG).show();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是您将选择分配给通知实例的方式。
通知在哪里:
您可以在这里找到更多信息:http://developer.android。 com/reference/android/app/Notification.html
This is how you assign the selection to your notification instance.
Where notification is :
You will find more info here : http://developer.android.com/reference/android/app/Notification.html