[android-developers] Re: Is modeless window supported in Android?

2008-06-23 Thread hackbod
For an activity that looks like a dialog, in your manifest just use android:theme=Theme.Dialog. For modeless windows, there are flags in WindowManager.LayoutParams that can be used to the input behavior of a window (though you probably only want to use these with dialog windows created inside of

[android-developers] Send SMS from Emulator

2008-06-23 Thread Ramesh
Hi, In My Application, I have send sms from emulator with out network. at the time the sms could not send. it will show failed message. can you give me any idea.. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] Re: Send SMS from Emulator

2008-06-23 Thread senthil arjunan
Hi Ramesh, Pls follow this link...hope to help u.. http://www.anddev.org/how_to_send_sms-t552.html \ Regardsn Senthil Arjunan On Mon, Jun 23, 2008 at 12:17 PM, Ramesh [EMAIL PROTECTED] wrote: Hi, In My Application, I have send sms from emulator with out network. at the time

[android-developers] How to change image on focus and unfocus

2008-06-23 Thread Raj
How to chanage the image on focus and unfocus --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this

[android-developers] Re: Is modeless window supported in Android?

2008-06-23 Thread ferne.ych
Hi hackbod, Thanks a lot! The Theme.Dialog does work. But could you pls tell me which flag in WindowManager.LayoutParams can be used to the input behavior of a window? I tried some but none seemed to do the job. Best regards On Jun 23, 2:19 pm, hackbod [EMAIL PROTECTED] wrote: For an

[android-developers] Re: H264 implementation

2008-06-23 Thread rezar
I think you can use JNI to call your C classes but google for it, I remember once I saw somebody did it. On Jun 22, 8:16 am, rajesh [EMAIL PROTECTED] wrote: Hey, I have an optimized version of H-264 written entirely in C language. I want to make use of this in my Media applications in

[android-developers] Re: Null Pointer Exception

2008-06-23 Thread dolan kundu
Hi kenishant, When a java file will create , in that case, only one (1) time setContentView (R.layout.abcd) you can create. And another case is, there must be some what mismatch with the java file and the xml file. so in these cases, NullPointerException can come. Thanks, Dolan. On Sat, Jun 21,

[android-developers] How to use Bundle and intent?

2008-06-23 Thread Pierre
Hi, all, Anyone can tell me how to put data into a Bundle and then put it into an intent? Can you give me some simple code of how to use it? I can not understand very well android.os.bundle and intent in the SDK document. Thanks in advance! Pierre

[android-developers] Re: How to use Bundle and intent?

2008-06-23 Thread Danny
I would highly recommend you go through the NotePad tutorial, all 3 of them, in order. On Jun 23, 7:57 am, Pierre [EMAIL PROTECTED] wrote: Hi, all, Anyone can tell me how to put data into a Bundle and then put it into an intent? Can you give me some simple code of how to use it? I can not

[android-developers] JavaMail

2008-06-23 Thread mikas
Hi, I'm still stuck with a problem and I need some help. The thing is when I add jaf-1_1_1 and javamail-1_4_1 libraries to an android project, for example test, as soon as I add these two libraries test.apk is deleted from /bin folder, but it happens as well, that as soon as I remove these two

[android-developers] Re: signal processing using android

2008-06-23 Thread eryksun
Why perpetuate Mathworks' stranglehold on technical computing into yet another platform? They can keep their mediocre, bloated software that costs tens of thousands of dollars... A better option would be to port a scaled-down version of Scilab: http://www.scilab.org which has a rough equivalent

[android-developers] Re: How do we host an Android application?

2008-06-23 Thread TrackDroid1
Hi (I assume you client has a Windows OS) The usual way is to: 1) tell client to download the SDK 2) unzip it somewhere (and drop the shortcut to emulator.exe on desktop) 3) download your application from your url 4) run the adb install path to downloaded app.apk from the directory where adb.exe

[android-developers] Re: Javamail no such label 0104

2008-06-23 Thread Justin (Google Employee)
What version of Windows? There are a few out there. :-) Cheers, Justin Android Team @ Google On Jun 19, 12:29 am, Karys [EMAIL PROTECTED] wrote: I'm using android-sdk_m5-rc15 on Windows Thanks for your interest to my problem Karys --~--~-~--~~~---~--~~ You

[android-developers] Re: Is modeless window supported in Android?

2008-06-23 Thread hackbod
These are the relevant ones: http://code.google.com/android/reference/android/view/WindowManager.LayoutParams.html#FLAG_NOT_FOCUSABLE http://code.google.com/android/reference/android/view/WindowManager.LayoutParams.html#FLAG_NOT_TOUCHABLE