bada

What is the compiler of Samsung Bada?

Hello, Recently Samsung presented Bada platform for mobile phone. http://developer.bada.com/apis/index.do I can find developer materials from the above web page but, I can't find how can I compile it and what is the compiler? This is C++ based framework and Samsung said Bada is operating system agnostic. In this case, how application...

Bada platform and dynamic link library

Hello, As I know Samsung Bada is not operating system but, just wonder if I can develop DLL like shared library for Bada applications. Thanks. ...

C++ Array of Variable sized Arrays

I am very new to C++ and I realise the following is not necessarily as easy as I'd like it to be, but I'd really appreciate a more expert opinion. I am essentially trying to achieve a dynamic iteration over a variable sized array of variable sized arrays similar to the following. String *2d_array[][] = {{"A1","A2"},{"B1","B2","B3"},{"C...

Monitoring GPS Coordinates

I need to monitor GPS Coordinates changes at every 15 min and take action based on that. as per bada developer guide report "only one application allowed to run at a time if another application try to run first one is closed" .so that how do i monitor GPS coordinates without interruption from other applications. how do i keep my applic...

J2ME UI on Samsung Bada platform

Hello All, When a J2ME application runs on Samsung phone with Samsung Bada an OS that supports TouchWhiz (GT-S5320, in my case),a virtual keypad is shown on the screen by default and always! This virtual keypad consists of the following keys - LEFT,RIGHT,UP,DOWN,FIRE and SOFT1, SOFT2. Is there anyway I can control when this keypad is d...

Image manipulation library for mobile application

I need a C/C++ image manipulation library for mobile image application, The library should have Brightness/contrast Levels Effects - Grayscale, Sepia and so on I particularly want to use it on Samsung BADA Platform. I want the the one event hough if it is not optimized for BADA ...

Maximum application size of android & BADA platform

what is maximum size of thick/thin client application(to d/w through OTA) in both Android & Samsung Bada platform ? ...

It is the samsung mobile "Corby Beat GT-M3710" using Bada OS?

What's Operating System is using the Samsung Mobile "corby beat gt-m3710"? in some places says it's using an app for Bada OS and it will the first phone using it, but there's nothing clear. ...

Is there a class in bada which is similar to "Context" in android?

I'm changing a project from android to bada, but I dont find a class which has the same effect as "Context". Any suggestion? Thanks you very much. ...

Detect compilation on Bada OS

Hi, I would like to do something similar to #ifdef __linux__, but with the bada SDK. Is there a constant defined by default? Also, can I detect when I am compiling for the simulator? ...

Problem debugging C++ with an Eclipse based IDE

Hi all, This is a weird question in that I'm not sure where to start looking. First of all, I haven't done any C++ programming for the last 10 years so it could be me thats forgotten a few things. Secondly, the IDE I'm using is Eclipse based (which I've never used) and customized for Samsung bada based mobile development (it kicks off ...

How to reload Bada application without restarting the emulator?

Is it possible, and if yes then please tell me how I can do it. ...

How can I pass controls as reference in Bada?

In the big picture I want to create a frame based application in Bada that has a single UI control - a label. So far so good, but I want it to display a number of my choosing and decrement it repeatedly every X seconds. The threading is fine (I think), but I can't pass the label pointer as a class variable. //MyTask.h //... result Con...

SVG decoding - portable solution

I need fully functional vector format, which i can decode to plain bitmap data in my app. It doesn't need to be SVG, but it seemed best (but other suggestions are welcome). So, i need an lib to simply rasterize SVG into plain pixel data - the simplier, the better. The problem is I need it for bada OS (it's OS for mobile phones), so i nee...

How can I get the HTML from a web page in Bada?

I don't know what other details I should provide. But I am very disoriented. I am not a web developer so I don't know what classes to use. It's not like I can tell the difference between HttpResponse, HttpHeader, HttpSession, HttpTransaction etc. ...

Parse XML from String using XPath in Bada?

I have read the tutorial on XML parsing in Bada. But I don't want to use a file. I need to parse my XML from a Osp::Base::String. Any ideas which methods should I use? So far I have replaced xpathCtx = xmlXPathNewContext(doc); if(xpathCtx == NULL) { AppLog("Error: unable to create new XPath context"); xmlFreeDoc(doc); return(E...

Developing cross platform mobile application

More and more mobile platforms are being launched and sdk's are available to developers. There are various mobile platform are available, Android,iOS,Moblin,Windows mobile 7,RIM,symbian,bada,maemo etc. And making of corss platform application is headache for developers. I am searching common thing across the platforms which will help to...

What's the best common format for an eBook like text to share with most of the mobile phone types

There is a description about a product or event that people would like to share among them. This can be a simple text or rich text too. They are looking into which format is the best for this purpose. They would like to see compatible with as many phones as possible. We are talking about phones that have Bluetooth. Also the text is lon...

How to compile bada gcc toolchain from command line?

Hello I want to develop a helloworld application but want to compile it using Command line not by BADA IDE.Could any body help me with it. Thanks ...

How to restrict keypad characters to only numbers (editField in bada)

Hello: I have an EditField in which the user ONLY can enter numeric characters but I don't know how to only show a numeric keypad instead of the deafault bloated keypad. It would simplify the input (and remove the need of data validation) Thanks in advance. ...