可以更改未在Tizen智能手表应用程序的Galaxy Wearable应用程序中显示的应用程序设置

时间:2019-02-26 10:52:57

标签: settings tizen tizen-web-app

我正在为Samsung Galaxy Watch(Tizen)构建一个Web应用程序。我正在尝试添加可以在Galaxy Wearable手机应用程序中配置的应用程序设置。在Galaxy Wearable应用程序的应用程序列表中,我的应用程序旁边无法显示“设置”按钮/图标。

这是我的config.xml:

<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns:tizen="http://tizen.org/ns/widgets" xmlns="http://www.w3.org/ns/widgets" id="http://yourdomain/MBTATracker5" version="1.0.0" viewmodes="maximized">
    <access origin="https://api-v3.mbta.com" subdomains="false"></access>
    <tizen:application id="ZTkU5rq5kJ.MBTATracker5" package="ZTkU5rq5kJ" required_version="2.3.2"/>
    <content src="index.html"/>
    <feature name="tizen.org/feature/location.gps"/>
    <feature name="tizen.org/feature/network.internet"/>
    <feature name="tizen.org/feature/screen.size.normal"/>
    <icon src="icon.png"/>
    <name>MBTA Tracker</name>
    <tizen:privilege name="http://tizen.org/privilege/setting"/>
    <tizen:privilege name="http://tizen.org/privilege/power"/>
    <tizen:privilege name="http://tizen.org/privilege/internet"/>
    <tizen:privilege name="http://tizen.org/privilege/location"/>
    <tizen:privilege name="http://tizen.org/privilege/filesystem.read"/>
    <tizen:app-control>
        <tizen:src name="index.html"/>
        <tizen:operation name="http://tizen.org/appcontrol/operation/remote_settings"/>
    </tizen:app-control>
    <tizen:profile name="wearable"/>
    <tizen:setting hwkey-event="enable"/>
</widget>

这是我的settings / settings.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<Application xmlns:android="http://schemas.android.com/apk/res/android" type="application" version="001" language="english">
    <packageName>ZTkU5rq5kJ</packageName>
    <DisplayName>@MBTA_Tracker</DisplayName>
    <Settings>
        <Item id="item_switch_alerts_display_parking" title_type="title_subtitle" setting_type="switch">
            <Title>@Display_Parking_Alerts</Title>
            <SubTitle options="switch">@switch_off</SubTitle>
            <SwitchButton id="switch_alerts_display_parking" switch_checked="no">
                <SwitchItem>@switch_on</SwitchItem>
                <SwitchItem>@switch_off</SwitchItem>
            </SwitchButton>
        </Item>
    </Settings>
</Application>

这是我的settings / strings.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<resource>
    <string name="MBTA_Tracker">MBTA Tracker</string>
    <string name="Display_Parking_Alerts">Display Parking Alerts</string>
    <string name="switch_on">ON</string>
    <string name="switch_off">OFF</string>
</resource>

当我在Android手机上转到“ Galaxy Wearable”应用时,没有显示更改应用设置的选项。我尝试使用不同的settings.xml文件,包括我在互联网上找到的文件,但无法获得任何更改设置以显示设置的选项。有什么我想念的吗?

0 个答案:

没有答案