tizen

How to add background to elementary(EFL) widget?

牧云@^-^@ 提交于 2019-12-08 08:50:49
问题 I want background color(or image) to elementary widget(also container) like grid or box. how can I set background color to elementary widget? in EFL elementary document, I found elm_bg functions, but I can't set it as background to other elementary containers... 回答1: Also asked on tizen.org, this part is unclear apparently https://developer.tizen.org/ko/forums/native-application-development/how-change-button-background-color Theming is the way to go, sample code shared at previous URL. 回答2:

Notification in Gear2 App

穿精又带淫゛_ 提交于 2019-12-08 06:38:31
问题 Is it possible to sent notification from Gear Provide app to Gear Consumer App ? if possible Please provide a tutorial or sample code for that 回答1: Gear2 notification framework isn't built in as Android wear framework. To do it, you must implement two sides, your Gear2 app and your Android host app. On your Gear2 app, the tricky part is the javascript callback to accept connection from host-app. var agentCallback = { onrequest : function(peerAgent) { //accept connection if there is a request

Error when deploying Tizen App - Failed to get a device information

不打扰是莪最后的温柔 提交于 2019-12-08 03:34:32
问题 I am having a problem with deploying a Tizen app onto my Samsung smart tv. For some time it was working really good, but since updating tizen studio to 2.0 and the tv-extension to 4.0 it isn't working anymore. I always get a 'Failed to get a device information' error. [2017.11.22 00:54:29][ERROR] ProfileInfo.java(426) - Failed to get a device information from '10.0.0.40:26101' (model: UJ5500, platform: Tizen, version: unknown, profile: unknown `-¶) java.lang.Exception: Failed to get a device

Tizen wearable how to keep app in foreground?

空扰寡人 提交于 2019-12-08 03:18:44
问题 I'm trying to write an app that detects key presses. I have tried all kinds of different types of apps and no success. Tizen watchface does not support HW keys, native service can not detect HW keys because there is no interface. (correct me if i am wrong please - but only if you know it works right now on 2.3.1, because i saw a lot of posts but none seem to be working) Right now i am working on webApp, that supports background running and HW keys. BUT after some time it always goes to home

Installing App to Samsung Tizen TV with Partner Level Certificate

那年仲夏 提交于 2019-12-07 23:54:13
问题 I had a problem to install developed app to Samsung TV device. Now I got a solution and i want to share my experience. Problem occurs if you add Partner Level Priviliges like http://developer.samsung.com/privilege/drminfo http://developer.samsung.com/privilege/drmplay and http://developer.samsung.com/privilege/productinfo. 回答1: You need Tizen IDE to do all of these. https://developer.tizen.org/development/tizen-studio/download Open Tools > Package Manager and be sure you have installed Main

XmlHttpRequest on Tizen TV exits application

萝らか妹 提交于 2019-12-07 16:19:26
问题 I am currently developping an app for Samsung Tizen and WebOS TVs. For this, I am using Samsung's TOAST and Caph with angular1. The generated .wgt is working fine on browser and TV Simulator, but on real device, the application exits when an XMLHttpRequest is sent. Here is the code: var url = "grant_type=password&username=" + $scope.logInfos.loginEmail + "&password=" + $scope.logInfos.loginPassword; var xhr = new XMLHttpRequest(); xhr.open('POST', 'https://myUrl/token'); xhr

How to add background to elementary(EFL) widget?

风格不统一 提交于 2019-12-07 02:39:27
I want background color(or image) to elementary widget(also container) like grid or box. how can I set background color to elementary widget? in EFL elementary document, I found elm_bg functions, but I can't set it as background to other elementary containers... Also asked on tizen.org, this part is unclear apparently https://developer.tizen.org/ko/forums/native-application-development/how-change-button-background-color Theming is the way to go, sample code shared at previous URL. Use elm_table widget. By using table, you can pack multiple objects into the same position. create elm_table.

Tizen IDE crashes all the time

邮差的信 提交于 2019-12-06 22:26:41
Tizen IDE crashes all the time when I want to start example project. I'm running Tizen IDE 1.0.0b2 under Ubuntu 12.04. Currently it gives me following ouput. It seems that the problem is here: err:wineboot:ProcessRunKeys Error running cmd L"C:\windows\system32\winemenubuilder.exe -a -r" (2) Though, I've no idea why IDE try to access windows libraries. Output form IDE: JVM terminated. Exit code=1 /usr/bin/java -Dfile.encoding=UTF-8 -Dosgi.requiredJavaVersion=1.6 -XX:+AggressiveOpts -XX:PermSize=128M -XX:MaxPermSize=256M -XX:MaxNewSize=128M -XX:NewSize=128M -Xms256m -Xmx512m -Dlog4j

Installing App to Samsung Tizen TV with Partner Level Certificate

試著忘記壹切 提交于 2019-12-06 14:03:49
I had a problem to install developed app to Samsung TV device. Now I got a solution and i want to share my experience. Problem occurs if you add Partner Level Priviliges like http://developer.samsung.com/privilege/drminfo http://developer.samsung.com/privilege/drmplay and http://developer.samsung.com/privilege/productinfo . You need Tizen IDE to do all of these. https://developer.tizen.org/development/tizen-studio/download Open Tools > Package Manager and be sure you have installed Main SDK > Certificate Manager, Extension SDK > Samsung Certificate Extension. Open Tools > Device Manager and

Watch Face with additional styles in Gear S2 on Tizen SDK

末鹿安然 提交于 2019-12-06 13:28:08
问题 I'm working on developing various watch faces for the Gears S2 under the Tizen Web SDK. I've noticed some of the preinstalled watch faces have a "Style" button at the bottom of the watch chooser screen. When this button is tapped, a page full of options appears enabling the user to change the color, as well as other watch face options. I cannot find any API that allows me to put this same button on my watch faces in order to provide a color changing UI. Anyone here have any ideas? I've