Questions tagged [bada]

bada is Samsung's platform for mobile devices.

External Resources

  1. bada Developer site
  2. bada official Twitter
  3. Samsung Developers, the official forum for developers run by Samsung
152 questions
0
votes
2 answers

Memory management in BADA Operating System

I am finding it very hard to get the details of how memory management is done in BADA OS. Does anyone have any info about it or do all smart-phones have similar memory management concepts?
Anirudha
  • 32,393
  • 7
  • 68
  • 89
0
votes
1 answer

easiest way to store user data/input in a application

what is the easiest way to store e.g. a list of strings in the application, so when the user start the app again i can simply read it out again and work on the stored list of strings?
gurehbgui
  • 14,236
  • 32
  • 106
  • 178
0
votes
1 answer

Textbox Control in bada 1.1?

Is text box control is available in bada 2.0 only .Then how can we use control or method which can provide the functionality similar to textbox in bada 1.1 .Is any one have idea than Kindly please suggest me because I want to use the similar contol…
dinesh
  • 41
  • 4
0
votes
1 answer

Facebook Registeration for bada 1.1

I have made an app in bada 2.0 in which I have implement facebook and It works fine. But when I use the same code for bada 1.1, it doesn't work. I have: registered the app for 1.1 both on http://developer.bada.com used the downloaded manifest file…
dinesh
  • 41
  • 4
0
votes
2 answers

bada 1 and JSON

Bada 2.0 has classes to handle JSON. Bada 1 doesn't have these classes. How to work with JSON in bada? I have tried jsoncpp(http://sourceforge.net/projects/jsoncpp/), but it does not work (iostream: No such file or directory) The same problem with…
Dmitry
  • 7,457
  • 12
  • 57
  • 83
0
votes
3 answers

About ownership of heap objects and C++ & pass-by-reference parameters

I would like my class to be: class NumberedString : public Object { public: String newName; short nameID; NumberedString(String &newName, short nameID) : newName(newName), nameID(nameID) {} }; HashMap uniqueStrs;//For later. An…
John
  • 6,433
  • 7
  • 47
  • 82
0
votes
1 answer

Widgets on BADA 2.0. How to start?

I want to make widget for BADA 2.0 which should be constantly shown on home screen. Samsung widgets developer forum are about to close(http://innovator.samsungmobile.com/platform.main.do?platformId=12). So I ask here. Please give me few…
tesk_terrus
  • 63
  • 1
  • 1
  • 4
0
votes
2 answers

bada app that Always in run

I want to write an application that check incoming SMS for Spm blocking. how to be notified of the recieved SMS in my App? how to be always in run in bada OS?
mSafdel
  • 1,527
  • 4
  • 15
  • 25
0
votes
1 answer

Restoring form to its previous state in bada

I need to save a form's current state and restore it while i am navigating between them. I am using FormManager class to navigate between form's. Is it possible to do that with memory handled efficiently?
ArulRaj
  • 119
  • 2
  • 11
0
votes
1 answer

How to add custom font in bada

Is it possible to set custom fonts in label text, button text, edit text. If possible then how that can be done. Anyone know please help me to solve this out
AndroidDev
  • 4,521
  • 24
  • 78
  • 126
0
votes
2 answers

How to call function/pass value from one class to another in bada using C++ friend function

I know this is a basic c++ question, but may I know how can I call a function/pass value (elementId) from one class to another in bada using the friend function? In my form class, I have a listView and when the item in the listView has been…
Winona
  • 2,950
  • 2
  • 21
  • 29
0
votes
1 answer

bada Programming - Call listview within a listview

I currently have a listview containing 4 items, in one of the listview item, I would like to implement another listview, do I have to do another form manager? Or how do I go about doing it? Also, how do I call one class's function in another class?…
Winona
  • 2,950
  • 2
  • 21
  • 29
0
votes
2 answers

How to decide which model we select

This is the first application that I am going to do in Bada SDK 2.0.2. While creating the project for the first time it asked me to select model and version numbers like Wave WVGA, Wave WQVGA, and Wave WVGA. Now my questions are What is the…
AndroidDev
  • 4,521
  • 24
  • 78
  • 126
0
votes
1 answer

How to autostart a Bada 2.0 app after the boot?

I think auto-starting a Bada app just immediately after the device boots up was not possible with pre-2.0 firmware/sdk. I'm wondering if it's possible with 2.0?
devguy
  • 2,336
  • 5
  • 27
  • 31
0
votes
1 answer

Bada's AppLog mangles my reported strings strangely

I'm adapting the example of Forms Management here and found AppLog to mangle my reported strings strangely. void MyFormsApp::OnUserEventReceivedN (RequestId requestId, IList *pArgs) { AppLog("OnUEveRxdNb, beginning"); if(!pArgs) { …
John
  • 6,433
  • 7
  • 47
  • 82