在黑莓中以编程方式将配置文件更改为静音

发布于 2025-01-05 01:08:17 字数 84 浏览 0 评论 0原文

我正在尝试将手机的当前配置文件更改为静音。我正在寻找 API 来执行此操作。这些选项可通过黑莓主屏幕上的扬声器图标访问。 我如何以编程方式更改配置文件?

I am trying to change the current profile of the phone to Silent. I am looking for the API to do this. These options are accessible via the Speaker icon on the main blackberry screen.
How i can change the profile programmatically?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

离鸿 2025-01-12 01:08:17

您无法以编程方式更改黑莓设备的配置文件。悲伤但真实

There is no way you can change the profile of a blackberry device programatically. Sad but true

破晓 2025-01-12 01:08:17

目前支持以编程方式将配置文件从正常更改为静默。以下是一些您可能会觉得有用的链接。

黑莓支持论坛:如何以编程方式将配置文件从正常更改为静音?

blackberryforums.com:以编程方式更改个人资料

It's currently NOT supported to change profile programmatically from normal to silent. Following are some links you might find useful.

BlackBerry Support Forums: how to change profile programatically from normal to silent??

blackberryforums.com: Programatically Change Profile

月野兔 2025-01-12 01:08:17

我在黑莓开发者专区看到这个问题;

我们更改个人资料状态(意味着静音 --> 像这样大声),但我们无法更改设置(意味着您无法更改静音者的个人资料设置或Loud 的个人资料设置);

请参阅示例代码;

public final class LoadingScreen extends MainScreen implements FieldChangeListener
{   
public LoadingScreen()
{        
    createGUI();
}

private void createGUI() 
{
    try 
    {           
        ApplicationManager.getApplicationManager().launch("net_rim_bb_profiles_app");
    } 
    catch (Exception e) 
    {
        //Exception
    }
}

public void fieldChanged(Field field, int context)
{

}   
}

I see this question in Blackberry Developer Zone;

We only change the profile status(Means silent --> Loud like this) but we cannot change the settings (means you cannot change the slient's profile settings or Loud's profile settings);

see the sample code;

public final class LoadingScreen extends MainScreen implements FieldChangeListener
{   
public LoadingScreen()
{        
    createGUI();
}

private void createGUI() 
{
    try 
    {           
        ApplicationManager.getApplicationManager().launch("net_rim_bb_profiles_app");
    } 
    catch (Exception e) 
    {
        //Exception
    }
}

public void fieldChanged(Field field, int context)
{

}   
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文