首页 \ 问答 \ Android:在设置>声音和显示>手机铃声中看不到铃声(Android: Ringtone is not visible in settings>Sound and Display>phone ringtone)

Android:在设置>声音和显示>手机铃声中看不到铃声(Android: Ringtone is not visible in settings>Sound and Display>phone ringtone)

我开发了一个音板应用程序,我在长按时设置铃声。 没问题。 铃声改变了。 但是当我去设置 - >声音和显示 - >手机铃声时,我的铃声根本没有列出。 并且未选择任何铃声。 我如何在那里列出我的铃声?


I have developed a sound board application, in which I set ringtones on long press. No issues about it. The ringtone is changed. But when i go to Settings->Sound & Display->Phone Ringtone my ringtone is not listed at all. And No ringtone is selected. How do I list my ringtone there?


原文:https://stackoverflow.com/questions/4329691
更新时间:2024-04-27 12:04

最满意答案

使用xpath并在xpath中包含parent或sibling元素。 你提到了两个不同的标签或desc你可以在xpath中使用它们


Use xpath and include either a parent or sibling element in xpath. You mentioned two different labels or desc you can use these in xpath

相关问答

更多
  • var comp = new RegExp(location.host); $('a').each(function(){ if(comp.test($(this).attr('href'))){ // a link that contains the current host $(this).addClass('local'); } else{ // a link that does not contain the cur ...
  • 我们来看看这些要求。 您有一些用户提供的纯文本,您要使用超链接的URL显示。 “http://”协议前缀应该是可选的。 应该接受域和IP地址。 应接受任何有效的顶级域名,例如.aero和.xn - jxalpdlp。 应允许端口号。 必须在正常句子上下文中允许URL。 例如,在“访问stackoverflow.com”中,最后一段不是URL的一部分。 您可能还想允许“https://”网址,也可能允许使用其他网址。 与HTML一样显示用户提供的文本一样,您希望防止跨站点脚本 (XSS)。 此外,您将要将UR ...
  • 您可以将自定义操作添加到任何可用的UILabel替换中,这些替换支持使用以后拦截的伪造 URL方案的链接: TTTAttributedLabel *tttLabel = <# create the label here #>; NSString *labelText = @"Lost? Learn more."; tttLabel.text = labelText; NSRange r = [labelText rangeOfString:@"Learn more"]; [tttLabel addLink ...
  • z-index将文本保留在网页上的其他项目下方。 例如,如果将main.css中菜单的z-index更改为1,则应该能够突出显示并单击链接。 div.menu { font-family: CapsuulaRegular; color:#fff; line-height:54px; width:22%; height:100%; padding:0px; border:none; border:0; margin:0px; background: transparent url('55.png'); fo ...
  • 使用xpath并在xpath中包含parent或sibling元素。 你提到了两个不同的标签或desc你可以在xpath中使用它们 Use xpath and include either a parent or sibling element in xpath. You mentioned two different labels or desc you can use these in xpath
  • 在你的网站上你有一个scripts.js文件。 删除或注释从22行到45行。这些行包含运行magnificPopup jQuery插件的代码。 In your website you have a scripts.js file. Remove or comment lines going from 22 to 45. Those lines contains the code that runs the magnificPopup jQuery plugin.
  • 将Android Studio升级到v3.0修复此问题。 Upgrading Android Studio to v3.0 fixing this issue.
  • 我会用简单的~[az]+://\S+~i 以协议[az]+://开头 \S+后跟一个或多个非空格,其中\S是[^ \t\r\n\f]的简写形式 使用修饰语 i (PCRE_CASELESS) (可能不是真的需要) 所以它可能看起来像这样: $pattern = '~[a-z]+://\S+~'; $str = 'Test text http://hello.world Test text http://google.com/file.jpg Test text https://hell.o.wor.ld ...
  • 这似乎按预期工作: textView.textStorage!.setAttributedString(NSAttributedString(string: ...)) textView.checkTextInDocument(nil) This seems to work as expected: textView.textStorage!.setAttributedString(NSAttributedString(string: ...)) textView.checkTextInDocument( ...
  • 这是因为您在添加元素之前尝试访问该元素,因此document.getElementById('test')返回null。 您可以将其包装在window.onload下,或者在html元素之后添加脚本。 尝试: