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
2
votes
2 answers

Does Bada support the use and creation of dynamic link libraries for applications?

As I know Samsung Bada is not operating system but, just wonder if I can develop DLL like shared library for Bada applications.
Wonil
  • 6,364
  • 2
  • 37
  • 55
2
votes
1 answer

How can I capture audio from my phone's analogue radio to mp3 format?

I have a bada phone. It receives radio via an FM (frequency modulated) antennae. It can record this natively (don't know about publicly available API's). http://www.technostarry.com/mobiles/fm-radio-record-samsung-wave-bada-phone/ I have an Android…
John
  • 6,433
  • 7
  • 47
  • 82
1
vote
0 answers

How can i run a service on Boot

Hi i want to run a service in Bada which runs on the Boot and it should be able do activities like a sound of some seconds. 1) How it can be done 2 Which APIs can i use.
Vijay
  • 278
  • 5
  • 19
1
vote
1 answer

X and Y axis doesn' t work on Bada 2.0

I' ve downloaded an example app from Bada documentation, DigitalLocker, and I' ve done and I' m doing some test, I had some problems, but with some help I solved, now I have another problem with X and Y axis in Item forms (personalIdItem, webacco,…
Mitro
  • 1,230
  • 8
  • 32
  • 61
1
vote
1 answer

eclipse HTML/JS editor

I use bada SDK 1.2 and there is no HTML/JS editor. What project do you recommend to add in Help->Install New Software? I have tried 2 projects on sf.net(add jars to plugins) but they didn't work.
Dmitry
  • 7,457
  • 12
  • 57
  • 83
1
vote
2 answers

bada C++ std::stringstream

bada crashed on stringstream read. json::Object objDocument = d(); std::stringstream stream; json::Writer::Write(objDocument, stream); json::Object objDocument2; json::Reader::Read(objDocument2, stream); // <=== crash or like this: std::string…
Dmitry
  • 7,457
  • 12
  • 57
  • 83
1
vote
2 answers

Why is public inheritance advocated when reducing the publicly visible API seems preferable from a maintainability perspective?

I am using bada and refer to the tutorial here, which begins: class MainForm: public Osp::Ui::Controls::Form, public Osp::Ui::IActionEventListener, public Osp::Ui::ITouchEventListener { I am running code where I…
John
  • 6,433
  • 7
  • 47
  • 82
1
vote
1 answer

Bada exceptions on RemoveAllControls call

What's the deal with this, it's driving me crazy? I run this piece of code; if(GetControlCount() > 0) { RemoveAllControls(); } And as soon as I step over the RemoveAllControls(); line I get the following…
Hamid
  • 4,410
  • 10
  • 43
  • 72
1
vote
1 answer

Does Bada IDE have code completion and meaningful error messages?

I'm trying to upgrade a Bada app from 1.2 to 2.0 with no experience of Bada. I have the project building and can run it in the emulator but I get a load of warnings and I cant click the text boxes to get a keyboard and enter anything in the…
Hamid
  • 4,410
  • 10
  • 43
  • 72
1
vote
1 answer

How can I run created app in all Bada devices

I have just created a new project with Bada SDK 2.0.2. When creating the new project I was asked to select a model i.e either HVGA, QVGA, or WQVGA. Now my problem is that if I select a QVGA model than I am not able to run my app in HVGA and WQVGA.…
AndroidDev
  • 4,521
  • 24
  • 78
  • 126
1
vote
2 answers

How to write a background service in Bada?

How can I write a service running in background for a Bada app? I need to write a service that starts when the device it booted up, and need it to run in background, so that it listens to incoming sms messages, and do some special actions once it…
devguy
  • 2,336
  • 5
  • 27
  • 31
1
vote
1 answer

bada Programming - Close/Hide Keypad when Switch Tab

May I know how to close or hide the overlay keypad from the editField when I switch tab (panel)?
Winona
  • 2,950
  • 2
  • 21
  • 29
1
vote
2 answers

Why didn't bada require scoped_ptr?

The bada C++ style guide/architecture uses a two-step initialization of C++ objects. Why did they not simply require the use of scoped_ptr?
user239558
  • 6,964
  • 1
  • 28
  • 35
1
vote
1 answer

Generate sounds programmatically

I want to develop a bada application that generate notes when user touches the screen. Is there any way to do that? I remember my old Amstrad CPC 464 had a BASIC instruction, SOUND, to generate sounds programmatically. Is there any library to do…
VansFannel
  • 45,055
  • 107
  • 359
  • 626
1
vote
1 answer

Animation is not supported Exception

When I try to run FormTransition in UiControlAnimator (SDK example) I get an exception saying "0086.598,EXCEPTION,P32,T00,A124,Osp::Ui::Animations::FrameAnimator::GetStatus (126) > [] Animation is not supported." How can I fix this?
ArulRaj
  • 119
  • 2
  • 11
1
2
3
10 11