[android-developers] Re: upload photos on web server.

2012-09-08 Thread srikanth
please find www.developers.android.com On Friday, September 7, 2012 3:52:25 PM UTC+5:30, vivekdave wrote: Hi I am new to Android and I would like to create a simple application to upload photos on webserver. please let me know how to achieve it.any steps to complete it? -- You

[android-developers] Properties Elements Layout

2012-09-08 Thread fala70
I installed new adt plugin 20.0.3 int layout designer are changed much things. The properties panel is nicer but also much limited.. If I want set an height fixed layout property for a view, I can't it permit only to select fill_parent, match_parent, wrap_parent. I discovered that I can

[android-developers] Re: How to remove(clear) shared preferences of one application from other application?

2012-09-08 Thread Abhishek Kumar Gupta
Hi TreKing, Thanks for the reply. You are absolutely right, it was my mistake. My requirement is to delete saved data of one application from another application( e.g I am launching *App B* from *App A*. In *App B*, I am saving the state of checkBoxPreference. I need to clear the state of

Re: [android-developers] Re: Animation moving image in random

2012-09-08 Thread TreKing
On Sat, Sep 8, 2012 at 1:23 AM, Haris haris...@gmail.com wrote: I just meant some link where I can refer for the above question But your above question doesn't make much sense. In fact, your above question isn't a question at all.

Re: [android-developers] Re: How to remove(clear) shared preferences of one application from other application?

2012-09-08 Thread TreKing
On Sat, Sep 8, 2012 at 2:43 AM, Abhishek Kumar Gupta akgaec2...@gmail.comwrote: Can you suggest any way do it? Send a message to app B from app A, either as an Intent extra when you start the Activity, or as a Broadcast you send, which tells the Activity B to clear that preference.

[android-developers] Re: How to remove(clear) shared preferences of one application from other application?

2012-09-08 Thread Abhishek Kumar Gupta
Hi TreKing, Thanks for the idea, it sounds good. I will try it. On Friday, 7 September 2012 16:31:37 UTC+5:30, Abhishek Kumar Gupta wrote: I want to remove(clear) the sharedpreferences of one application from other application. I have tried the following code in the other application to

[android-developers] SurfaceView overlay on camera view does not show when preview is on

2012-09-08 Thread Wazar
have a FrameLayout containing two SurfaceViews. One of them will show the camera preview, and the other is a custom surface view I use for drawing. Problem is the surface view does not show up. If I comment out the line where the camera starts preview, it does though, on the black background.

Re: [android-developers] soap+android related problem

2012-09-08 Thread rauf qureshi
package com.example.splashscreentest; import java.util.List; import java.util.Vector; import org.json.JSONObject; import org.ksoap2.SoapEnvelope; import org.ksoap2.serialization.AttributeInfo; import org.ksoap2.serialization.PropertyInfo; import org.ksoap2.serialization.SoapObject; import

[android-developers] Re: Live wallpaper. nullPointerException when detecting preview mode

2012-09-08 Thread JPS
Thanks for all your help. looks like the place to make this call is in: @Override public void onCreate(SurfaceHolder surfaceHolder) { } Beware: this is called once and only once in run mode what the wallpaper is launched and each time the wallpaper is viewed in

[android-developers] Re: ANN: Jekejeke Prolog 0.9.5 (runtime console, google play)

2012-09-08 Thread Jan Burse
Jan Burse schrieb: - Runtime Library (free) III: The Android version is now also available on Google Play. Update: Since now, also live on Amazone Appstore for Android. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Animation moving image in random

2012-09-08 Thread Haris
Ok I will explain. Using animation I need to move my image randomly throughout the view.I am using canvas and drawables for this Any way I got solutionSo leave it. Thanks. On Friday, 7 September 2012 16:19:57 UTC+5:30, Haris wrote: For my application I need to

[android-developers] Import excel file to sqlite database.

2012-09-08 Thread mohammed Nuhail
How to import excel file to sqlite database to retrieve a data ? -- 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 group, send email to

Re: [android-developers] date

2012-09-08 Thread mohammed Nuhail
for date you have to give Date as datatype On Fri, Sep 7, 2012 at 9:28 PM, TreKing treking...@gmail.com wrote: On Fri, Sep 7, 2012 at 3:31 AM, Sadhna Upadhyay sadhna.braah...@gmail.com wrote: how to store date in sqlite and do sql query on date A: This is not specific to Android. B:

[android-developers] Re: installation of audio in /mnt/sdcard

2012-09-08 Thread lbendlin
During the initial run of your application you can copy the required files from the package to the sd card.Bonus points if you use the standard folder ( /data/Android/your.app.name/files or some such) On Friday, September 7, 2012 7:53:45 AM UTC-4, drstikko wrote: Hello, as far as I know

[android-developers] Re:Json ObectModel

2012-09-08 Thread Anton Kaiser
What doubts do you have exactly? To be honest, I don't understand your problem and your piece of code also doesn't explain what you are trying to achieve. Please be more exact here and give us the details of your goals and doubts. -- You received this message because you are subscribed to the

[android-developers] Add colon to InputType.TYPE_CLASS_NUMBER

2012-09-08 Thread powder366
How can I add colon(:) to the soft keyboard with the input type InputType.TYPE_CLASS_NUMBER Currently I have the following code: NumberKeyListener keyListener = new NumberKeyListener() { public int getInputType() { return InputType.TYPE_CLASS_NUMBER; }

Re: [android-developers] Add colon to InputType.TYPE_CLASS_NUMBER

2012-09-08 Thread Mark Murphy
You cannot force input method editors (IMEs) to have any particular keys. You can *request* general *classes* (e.g., numeric), and the IME *may* elect to honor that request. However, there isn't even a way to request a particular key, let alone any way to ensure that it will be there. Either use

Re: [android-developers] Add colon to InputType.TYPE_CLASS_NUMBER

2012-09-08 Thread powder366
OK. Is there a description that says what kind of letters, number etc. you get using one InputType. For example InputType.TYPE_CLASS_NUMBER; gives you 1,2,3,4 etc. or do I need to test each of them to see what I get? I've seen this link:

Re: [android-developers] Add colon to InputType.TYPE_CLASS_NUMBER

2012-09-08 Thread Mark Murphy
On Sat, Sep 8, 2012 at 9:34 AM, powder366 jonas.hey...@gmail.com wrote: OK. Is there a description that says what kind of letters, number etc. you get using one InputType. Not really. I've seen this link: http://developer.android.com/reference/android/text/InputType.html And that is all the

[android-developers] WHAT SUPPOSED to read first

2012-09-08 Thread lselwd
WHAT SUPPOSED to read first how to sign my App and get apk file, or the: http://developer.android.com/guide/google/play/licensing/index.html -- 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] Re: WHAT SUPPOSED to read first

2012-09-08 Thread lselwd
to license my app must use google api even not use maps etc??? On Saturday, September 8, 2012 4:50:34 PM UTC+3, lselwd wrote: WHAT SUPPOSED to read first how to sign my App and get apk file, or the: http://developer.android.com/guide/google/play/licensing/index.html -- You received this

Re: [android-developers] Password protect app before users can download from google play store

2012-09-08 Thread cjs264
Thanks all, I'm really new at this and I didn't know I could send the apk file to email and have users download it that way as well. Thanks for your replies! On Sunday, September 2, 2012 3:38:55 PM UTC-7, Kristopher Micinski wrote: No, if you require this then you should protect the app's

Re: [android-developers] Password protect app before users can download from google play store

2012-09-08 Thread John Coryat
A better way than e-mailing the apk is to use a link to a website. That way you can keep the APK up to date and not have to send out anything more than a notice there's an update. It's more efficient band-width wise too. -John Coryat On Saturday, September 8, 2012 9:21:58 AM UTC-5, cjs264

[android-developers] disable menu item in broadcast receiver

2012-09-08 Thread Ehsan Sadeghi
I create a broadcast receiver : package ir.smspeik.sms; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.telephony.SmsMessage; public class ReceiveSms

Re: [android-developers] disable menu item in broadcast receiver

2012-09-08 Thread Mark Murphy
Already addressed here: http://stackoverflow.com/q/12333115/115145 On Sat, Sep 8, 2012 at 2:17 PM, Ehsan Sadeghi esade...@gmail.com wrote: I create a broadcast receiver : package ir.smspeik.sms; import android.content.BroadcastReceiver; import android.content.Context;

[android-developers] Miniature ADK (accessory dev kit) Development Board on Kickstarter

2012-09-08 Thread craftycoder
I've been doing this ADK stuff for a while. I kept running into the issue boards either too big or not able to supply power to my phone. I've developed a small Arduino compatible development board that I use all the time for this now. It's small and inexpensive compared to other things that

Re: [android-developers] Import excel file to sqlite database.

2012-09-08 Thread TreKing
On Sat, Sep 8, 2012 at 5:19 AM, mohammed Nuhail nuhail...@gmail.com wrote: How to import excel file to sqlite database to retrieve a data ? Write code to do it. If you have a question that's a little more specific than that, you'll probably get a better answer.

Re: [android-developers] soap+android related problem

2012-09-08 Thread TreKing
On Sat, Sep 8, 2012 at 3:44 AM, rauf qureshi qureshira...@gmail.com wrote: i am troubling with above code Learn to debug your own code or post a *small* sample of code with a *clear*explanation of the problem you're having. Posting a giant blob of code with nothing more than I have a problem

Re: [android-developers] Re: Unable to instantiate application - application name field.

2012-09-08 Thread Kostya Vasilyev
I've seen similar class not found in my Market reports, for other types of components, which are clearly present in the app. Personally, I just ignore them - but your about half sounds way too high. I'd recommend testing your app on the lowest platform version it's marked as supporting, just in

Re: [android-developers] [Q] Making an Augmented Reality Android App

2012-09-08 Thread Ahmed.Essam
Thanks a lot *Raghav *for your assistance, I have a question please, What do you mean with math concepts? Also,If it possible, I would like a way to contact you in case I need help with a certain subject in my project. On Tuesday, September 4, 2012 8:51:14 PM UTC+3, Raghav Sood wrote: Yes,

[android-developers] Re: [Q] Making an Augmented Reality Android App

2012-09-08 Thread Ahmed.Essam
Thanks a lot *Raghav *for your assistance, I have a question please, What do you mean with math concepts? Also,If it possible, I would like a way to contact you in case I need help with a certain subject in my project. -- You received this message because you are subscribed to the Google

Re: [android-developers] [Q] Making an Augmented Reality Android App

2012-09-08 Thread Ahmed.Essam
Thank TreKing for your assistance, I am sorry if I was not clear in my description but I guess you are correct(that no one can give me a definitive answer). -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Android Fragments doubt.

2012-09-08 Thread pharaoh
Hello guys. I am developing a application and in a activity a I want it to be similar to ICS settings application, i.e. in the left side I have a ListFragment with 4 categories and in the right a Fragment with content of each category, and each category has a different layout, and I ran into

Re: [android-developers] Android Fragments doubt.

2012-09-08 Thread Mark Murphy
On Sat, Sep 8, 2012 at 8:15 PM, pharaoh edelcides.goncal...@gmail.com wrote: I am developing a application and in a activity a I want it to be similar to ICS settings application, i.e. in the left side I have a ListFragment with 4 categories and in the right a Fragment with content of each

[android-developers] Re: Android Fragments doubt.

2012-09-08 Thread pharaoh
Thank you very much, you helped lot. Domingo, 9 de Setembro de 2012 1:15:32 UTC+1, pharaoh escreveu: Hello guys. I am developing a application and in a activity a I want it to be similar to ICS settings application, i.e. in the left side I have a ListFragment with 4 categories and in the