Re: [android-developers] How can I solve com.google.zxing.NotFoundException exception?

2012-01-10 Thread Mukesh Srivastav
Venu you first download the https://market.android.com/details?id=com.google.zxing.client.android; and install it on device. things will work proper. -- Warm Regards, *Mukesh Kumar*, Android Consultant/Freelancer, India,Hyderabad. On Tue, Jan 10, 2012 at 1:15 PM, venu reddy

[android-developers] block application which tries to access internet

2012-01-10 Thread Suganya
i want block applications that are trying to access internet android. I should decide whether to allow the application to access internet or not..can i create an application like this -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] Re: SSL Client Authentication Broken in Android 4.0

2012-01-10 Thread Nikolay Elenkov
On Tue, Jan 10, 2012 at 4:32 PM, Carl Minden carlmin...@gmail.com wrote: when I made the certificate in openssl I did not call X509_sign() to sign it...for my use case it didn't need to be signed so I hadn't bothered. I see. If it's not signed, it not technically a certificate, so it's funny

Re: [android-developers] block application which tries to access internet

2012-01-10 Thread T.M.S.VIJAYKUMARR
ya u can create. On Tue, Jan 10, 2012 at 1:51 PM, Suganya suganyalakshmana...@gmail.comwrote: i want block applications that are trying to access internet android. I should decide whether to allow the application to access internet or not..can i create an application like this -- You

[android-developers] Re: Application#onCreate() called more than once?

2012-01-10 Thread srihari babu
Is there any remote service kind of thing is there? Since i have observed this kind of behaviour in my application, in which i used to create remote service. On starting remote service, application onCreate method got executed. I think it may helpful to u. Regards, Srihari babu.R Hyderabad --

[android-developers] Re: need help in coding for flickr integration

2012-01-10 Thread Ali Chousein
I can help you in everything you need, but it depends on the budget of your project :-) On Jan 9, 10:53 am, chowdary nani naveenneeli...@gmail.com wrote: Hi All, Can any one please help me in coding Flickr integration in android Thanks Naveen. -- You received this message because you are

Re: [android-developers] block application which tries to access internet

2012-01-10 Thread suganya lakshmanan
can you tell me how we can create. can we do it in application level or we have to customize the android os. -- 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

[android-developers] Re: Prevent seekbar from moving on tapping

2012-01-10 Thread B.Arunkumar
Hi, I was unable to understand your idea but I have implemented it in a different way. You can get the current thumb position from OnSeekBarChangeListener using sk.getProgress(). This can be translated into LayoutParams depending on the width and max progress you set for the seekbar.From the

Re: [android-developers] Re: Application#onCreate() called more than once?

2012-01-10 Thread Nikolay Elenkov
On Tue, Jan 10, 2012 at 5:33 PM, srihari babu hisriharib...@gmail.com wrote: Is there any remote service kind of thing is there? Since i have observed this kind of behaviour in my application, in which i used to create remote service. On starting remote service, application onCreate method got

Re: [android-developers] Re: Application#onCreate() called more than once?

2012-01-10 Thread Mukesh Srivastav
Instead of starting the service on onCreate(), you need to do the following things. 1. start the service onPause. 2. check if service is not started. -- Warm Regards, *Mukesh Kumar*, Android Consultant/Freelancer, India,Hyderabad. On Tue, Jan 10, 2012 at 2:03 PM, srihari babu

Re: [android-developers] block application which tries to access internet

2012-01-10 Thread T.M.S.VIJAYKUMARR
application level we can do (using receiver and service) On Tue, Jan 10, 2012 at 2:10 PM, suganya lakshmanan suganyalakshmana...@gmail.com wrote: can you tell me how we can create. can we do it in application level or we have to customize the android os. -- You received this message

[android-developers] Lack of clarity in image

2012-01-10 Thread aru padam
Hi all, I am developing an app, in this the selected image from the album have no clarity when set it to an image view. How i can avoid this problem.. Please help me Thanks Deepesh -- You received this message because you are subscribed to the Google Groups Android Developers group.

Re: [android-developers] Lack of clarity in image

2012-01-10 Thread Ratheesh Valamchuzhy
check the image is thumbnail or full sized. -- 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] Lack of clarity in image

2012-01-10 Thread Mukesh Srivastav
Make sure, you pass all the required parameters, below is the Imageview which i have used it after selecting an image from the album. ImageView android:id=@+id/iv_photo android:layout_marginTop=5dp android:layout_marginBottom=5dp android:layout_marginLeft=2dp android:layout_marginRight=2dp

Re: [android-developers] Re: Permission Denial: starting Intent when launching my activity from my widget

2012-01-10 Thread Kostya Vasilyev
From those logcat messages, I'd think that you have android:permission attributes on the activity or application in your manifest. http://developer.android.com/guide/topics/manifest/activity-element.html#prmsn The name of a permission that clients must have to launch the activity or otherwise

Re: [android-developers] Re: Ice Cream Sandwich networking problems

2012-01-10 Thread Kostya Vasilyev
A bug report against your own code? Yes, please do :) 10 января 2012 г. 6:52 пользователь Aaron aobrien...@gmail.com написал: Thans for the reply. I guess all go ahead file a bug report then. -Aaron On Jan 9, 3:47 pm, Kostya Vasilyev kmans...@gmail.com wrote: And so it does:

[android-developers] reading CDATA from xml?

2012-01-10 Thread android developer
i have to read CDATA from xml, so please help me -- 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

[android-developers] Re: SSL Client Authentication Broken in Android 4.0

2012-01-10 Thread Carl Minden
Hmm, if there was a parse error I wonder why no exception was thrown, as far as I can tell it just silently failed and didn't send the cert to the server. The reason I am not using the openssl tool is because I am creating the certificate on the phone using an RSA keypair generated at runtime. I

Re: [android-developers] Re: SSL Client Authentication Broken in Android 4.0

2012-01-10 Thread Nikolay Elenkov
On Tue, Jan 10, 2012 at 6:14 PM, Carl Minden carlmin...@gmail.com wrote: Hmm, if there was a parse error I wonder why no exception was thrown, as far as I can tell it just silently failed and didn't send the cert to the server. Because the framework code swallowed it? Did you see anything

Re: [android-developers] How can I solve com.google.zxing.NotFoundException exception?

2012-01-10 Thread venu reddy
OK I understood mukesh... But I developed my own customized barcode applciation using ZXING api... No need to install the ZXING Barcode application in my device... On Tue, Jan 10, 2012 at 1:30 PM, Mukesh Srivastav mukicha...@gmail.comwrote: Venu you first download the

Re: [android-developers] How can I solve com.google.zxing.NotFoundException exception?

2012-01-10 Thread Raghav Sood
Have you included their library in your build path? On Tue, Jan 10, 2012 at 3:07 PM, venu reddy venu.andr...@gmail.com wrote: OK I understood mukesh... But I developed my own customized barcode applciation using ZXING api... No need to install the ZXING Barcode application in my device...

[android-developers] webservice response parsed data

2012-01-10 Thread arun kumar
Hello, i am able to get the data from the server.the parsed data i has to show into Two activities in the first as text... and in the second activity as list ..am able to show in the text field but am unable to show in the list view (in the first activity i will have a abutton when i

Re: [android-developers] How can I solve com.google.zxing.NotFoundException exception?

2012-01-10 Thread venu reddy
Yes I included , yesterday itself I was able to run the application, today Its not working.. google.zxing.NotFoundException exception getting On Tue, Jan 10, 2012 at 3:13 PM, Raghav Sood raghavs...@androidactivist.org wrote: Have you included their library in your build path? On Tue,

Re: [android-developers] How can I solve com.google.zxing.NotFoundException exception?

2012-01-10 Thread Mukesh Srivastav
hmmm. you developed the apps , but you forget to call it :( Warm Regards, *Mukesh Kumar*, Android Consultant/Freelancer, India,Hyderabad. On Tue, Jan 10, 2012 at 3:13 PM, Raghav Sood raghavs...@androidactivist.org wrote: Have you included their library in your build path? On Tue,

[android-developers] Re: webservice response parsed data

2012-01-10 Thread arun kumar
below is the xml file i has to show name and total in textview which am able to do but i has to show the Monthname in the list in next activity where am struck...so plzz can any one give guindance on this . NameAndMontotal item NameArjun/Name Total406/Total Unit$/Unit item

[android-developers] Re: SSL Client Authentication Broken in Android 4.0

2012-01-10 Thread Carl Minden
There certainly were no exceptions. I guess I might have missed a warning but I don't think so. as far as trusting the certificate we have an out of band method for verifying the certificate when you first create the keypair, then after that the server can check if the cert is the one it expects

Re: [android-developers] Re: webservice response parsed data

2012-01-10 Thread Mukesh Srivastav
OMG, Arun, where are you setting the last parameter of the list.do you see the below example which i have shown in bold letters. ListAdapter adapter = new ArrayAdapterString(this, android.R.layout.simple_list_item_multiple_choice,*list*); The above list should be filled by your xml parser. hope

[android-developers][eclipse-adt plugin] How to make eclipse-adt graphical layout editor work independent of path

2012-01-10 Thread Dave
Hello, it seems that the graphical layout editor of eclipse-adt only renders properly if the xml layout file is in the folder project root\res\layout I am using: Eclipse 3.7.1 maintenance build M20111214-1406 JDK6_30 eclipse-adt plugin ADT 16.0.1 How can I make it work independent of the

[android-developers] Re: Installing SDK problems with eclipse

2012-01-10 Thread Jamel Toms
You don't need to install eclipse. Just extract the program in your program files directory and create a shortcut. The only thing that needs to be installed per-se is the JDK. The SDK is sort of independent of both of these. Once you open Eclipse go to Help/About (can't remember) and go to

Re: [android-developers] Fast, efficient usage of an object pool

2012-01-10 Thread eihero
Mr. Guy, Thanks for your information. I had looked the related code and I found the implementation of Pools.finitePool might acquire more elements than the limit we set for it, if we successively acquire elements without releasing them. Is this design purposely? Thanks. =) -- You received

[android-developers] Android - Make make surfaceview larger than parent

2012-01-10 Thread Alexander Davidson
I have a 'Portrait mode' tabbed based application that contains a SurfaceView (with a camera preview on it) within one of the tabs. I have been creating my camera code from the Android API Demos and I have it all set-up working correctly bar one thing. The resulting camera preview is stretched and

Re: [android-developers] Re: Giving away my book: Genius Android Marketing

2012-01-10 Thread John-Marc Desmarais
I'll play. Sign me up. -jm On Mon, Jan 9, 2012 at 3:45 PM, YuviDroid yuvidr...@gmail.com wrote: Looks very interesting! Count me in!  :) Yuvi On Mon, Jan 9, 2012 at 6:04 PM, PhotoSteve dfwgoph...@gmail.com wrote: Add me too...I'm so new to Android I don't even know what I don't know

[android-developers] How to optimize rendering speed in webview

2012-01-10 Thread Marco Schaer
Hi there, Is there a possibility to enhance the rendering speed in the webview? With a simple javascript innerHTML it takes close to 1 second to display the content (10 divs). With IOS, exactly the same code is running swiftly and perfectly, even with less performant hardware. Tested under

[android-developers] Android samples command line build error

2012-01-10 Thread Allan
I used the following command to create the ant build.xml file for the SoftKeyboard sample: android update project -s -n MyKeyBoard -t 10 -p K:\DEV\Andriod\samples \android-15\SoftKeyboard I run ant debug install, but I get BUILD FAILED? -- You received this message because you are subscribed

[android-developers] Re: Giving away my book: Genius Android Marketing

2012-01-10 Thread Igor Popov
Hi! Thank you for your generous offer :) I would be very interested to read such a book! -- 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] Get MMS Info.

2012-01-10 Thread Lenbin
Hey guys, i'm working for Android MMS(APP Level).but i got some matters. my code: AndroidManifest.xml receiver android:name=.SMSReceiver android:permission=android.permission.BROADCAST_WAP_PUSH intent-filter android:priority=1000

[android-developers] ImageView

2012-01-10 Thread abhijeet tomar
I have define a imageview in main.xml and a image store in drawable and set the path.Image is displaying properly on the screen but i want, image working as a resizeable like map.when we using map then we have stretch the map or zoom in map easily .How is it possible with image view. Thanks i

[android-developers] Re: Giving away my book: Genius Android Marketing

2012-01-10 Thread nolanbri
I Just read the sample on the amazon site, im liking what i see, and your right there is noother book which goes into this subject. Please count me in forthe free book. Thanks :) -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: emulator: WARNING: Unable to create sensors port: Unknown error

2012-01-10 Thread DougLeary
In my case the problem has nothing to do with the Hello app. The emulator doesn't seem to fully start up. The command window gives the unable to create sensors port warning and the emulator just sits there displaying the ANDROID logo on a black background. The phone's home screen never appears.

[android-developers] Looking for a helping hand

2012-01-10 Thread Keith
Can someone please tell me why I keep getting this error. This is literally a copy of a working package and i do not understand how to fix this. I have searched and read this error from logcat and have not been able to relate.I am beneath novice and have been working on this for 6 man hours.

[android-developers] Re: Giving away my book: Genius Android Marketing

2012-01-10 Thread Jamel Toms
I would take a shot at it. On Jan 5, 11:50 am, scp89 jayvanbui...@gmail.com wrote: I've recently finished writing the first full-length, android-specific book on Android Marketing. It covers tips, tricks, strategies, competitive analysis, and so much more. Everything I've learned in 2 years

[android-developers] Animation in ExpandableListView

2012-01-10 Thread dileep
HI, How can i add animation effect in subitems of an ExpandableListView thanks. -- 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,

[android-developers] Problems about ICS multiparty or conference call

2012-01-10 Thread Wang Junju
Hi, When you initiate a call, you can see the phone screen. Now let's say you want to initiate another call (multiparty, or conference call) - you can type the new number, but the instant you hit the call button, the calling screen freezes and doesn't update anything (including the call

[android-developers] Android remove desktop shortcut

2012-01-10 Thread Live Happy
How can I make an android application remove it's desktop shortcut when the user deletes the application? How can I make an android application that does this automatically? i use this code to add shortcut to the desktop : Intent shortcutIntent = new Intent(Intent.ACTION_MAIN);

Re: [android-developers] Re: adding menu to Linear layout

2012-01-10 Thread syed ali
public boolean onCreateOptionsMenu(Menu menu) { boolean result = super.onCreateOptionsMenu(menu); menu.add(0, 1, 0, R.string.create_restaurant); menu.add(0, 2, 0, R.string.create_customer); menu.add(0, 3, 0, R.string.create_menu); return result; }

[android-developers] Android Market says that some devices not compatible with my app.

2012-01-10 Thread Vasily Laushkin
Hi, I have a issue. If I install my app for some devices (for example Galaxy S II) this works correctly, but if I try to download my app from market I see a message that this app not compatible with this device. My app build with API Level 7 and android:minSdkVersion defined as 7. I use

[android-developers] Re: Giving away my book: Genius Android Marketing

2012-01-10 Thread teodora papp
Thanks! I'm sure this book will help a lot in marketing the apps, which is more important than the technical development. I'm interested in it. Regards, Teodora On Jan 5, 6:50 pm, scp89 jayvanbui...@gmail.com wrote: I've recently finished writing the first full-length, android-specific book

[android-developers] drag shadow

2012-01-10 Thread Skip
Hello everybody, let me ask you following: I am creating a drag and drop application, what I want to do is changing the drag shadow on the fly, while the dragging process is happening. Is there any chance to do that? -- You received this message because you are subscribed to the Google Groups

[android-developers] Android File transfer / sharing APIs

2012-01-10 Thread San
Are there any file transfer or file sharing APIs available in Android. Tried to look around but could not figure it out, which is why I am asking this question on this forum. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Giving away my book: Genius Android Marketing

2012-01-10 Thread shadrxninja
Looks great! -- 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 android-developers+unsubscr...@googlegroups.com For more

[android-developers] multi level master detail with fragments

2012-01-10 Thread sell.bergstr
Hello all, I am writing my first fully fragment-based app, which should show multiple master/detail levels, basically as the google mail app does. I did not find any applicable examples online, and my experiments so far have failed, so I am asking this here: My app is currently only targeting

[android-developers] Customize Home Screen

2012-01-10 Thread Reji Joseph
Hi, I want to create an app which changes the home screen after launch. Home screen will be screen with only the default icons. Contacts, texts, voicemails and phone history would be blank. All texts and calls incoming would be blocked as well.That Means this will act as a new profile . Can

[android-developers] ContactsContract.RawContacts.SYNC2 can't be successfully updated on real device, works fine on SDK Emulator

2012-01-10 Thread mots
Hey, I have a weird problem: I'm writing timestamps into ContactsContract.RawContacts.SYNC2 in my SyncAdapter and try to read them out at a later point. But somehow, the update seems to not do anything on my Galaxy Nexus (I've checked the db, it's empty). On the emulator, everything works fine.

[android-developers] Japanese application name garbles only when uploaded to the market

2012-01-10 Thread taizo shibuya
Dear all, I would like to use Japanese character in the application name, which is defined in app_name in strings.xml. When I transfer an apk file directly to the real device, the application name is fine. However, when I upload it to the market, the application name garbles and look like

[android-developers] need help in coding for animation

2012-01-10 Thread syam sanker
Hi, I'm developing a simple application in android.in that i require an image to move from left to right.can anyone provide code for this. Thanks syam -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] Re: Giving away my book: Genius Android Marketing

2012-01-10 Thread Elnoxvie Elnoxvie
Hi, I am developing for a company with a feature app in the market but in this growing market, Marketing becomes essential part of success. i would love to learn more provided given the chance. Thanks. On Tue, Jan 10, 2012 at 9:16 AM, Samuel jrl...@gmail.com wrote: Hi, I'm interested to

[android-developers] C2DM Question

2012-01-10 Thread ken
We have some questions regarding the Android Cloud to Device Messaging Framework (C2DM) services. 1.Regarding to enabling C2DM section in http://code.google.com/intl/zh-TW/android/c2dm/, °ßIf the registration is successful, the C2DM server broadcasts a REGISTRATION Intent which gives

[android-developers] android.hardware.cts.CameraTest fail issue (testJpegThumbnailSize)

2012-01-10 Thread paul zeng
Hi All, I am checking camera cts these days, and I meet one failed issue. Would you please give me some suggestion to fix this issue. Many Thanks! /Test Test endtime=Fri Jan 06 11:50:15 CST 2012 name=testJpegThumbnailSize result=fail starttime=Fri Jan 06 11:50:13 CST 2012 FailedScene

[android-developers] new Developer

2012-01-10 Thread Astik Patel
Helllo languae known php,jquery i m a starting in android developer please help me for which software requirement for android application in Thanks regards Astik patel -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Problem with Android Market Filters

2012-01-10 Thread xavibq
Dear All, I have some problems with Android Market filtering system. I have been reading the documentation about Android Market Filters in developer.android.com, and I suppose the problem is related with screen or density restrictions. The manifest of my application contains the following:

[android-developers] how to be a game developers in android

2012-01-10 Thread nomikhan
hi i am new in programming and i want to make a game for my final project and i need help how i can start as i don't know any thing about androids can u guide me how i can become a good game developers in android. i will be very thankgul to you if u guide me and help me for achieving my goal. --

[android-developers] I want to start with Gis Application For Android... From where i should start???

2012-01-10 Thread ripal hiral
I want to start with Gis Application For Android... From where i should start??? Which Api is required? will it be done by GoogleApi or ArcgisApi Or Any Other?? Just newbie in android. Somebody help me to find out how to make a gis(Geographic Information System) application in android. PLZ.

[android-developers] Re: Prevent seekbar from moving on tapping

2012-01-10 Thread skink
B.Arunkumar wrote: Hi, I was unable to understand your idea but I have implemented it in a different way. You can get the current thumb position from OnSeekBarChangeListener using sk.getProgress(). This can be translated into LayoutParams depending on the width and max progress you set

Re: [android-developers] Android File transfer / sharing APIs

2012-01-10 Thread Mukesh Srivastav
Hi San, Can you answer below of the questions. 1. What type of file transfer you are looking for , i mean client server or Direct Android client, if it is Direct Android client, you can use FTPClient class. 2.File sharing: Facebook and Twitter api's are already there you can make use of it. 3.

Re: [android-developers] Re: webservice response parsed data

2012-01-10 Thread arun kumar
hey thanks for reply ArrayAdapterString adapter = new ArrayAdapterString(this, android.R.layout.simple_list_item_1,items); if i add like that am getting the below error... The constructor ArrayAdapterString(Year, int, int, ArrayListItemStructure) is undefined On Tue, Jan 10, 2012 at

Re: [android-developers] Re: webservice response parsed data

2012-01-10 Thread Mukesh Srivastav
Arun, fill your items with the data. On Tue, Jan 10, 2012 at 3:59 PM, arun kumar arun.kata...@gmail.com wrote: hey thanks for reply ArrayAdapterString adapter = new ArrayAdapterString(this, android.R.layout.simple_list_item_1,items); if i add like that am getting the below

[android-developers] Re: Problem with Android Market Filters

2012-01-10 Thread patrick
Hello, You use the SMS permission, so the telephony feature is by default set to mandatory. As the Xoom doesnt have the telephony feature, it cant see your app. If you add uses-feature android:name=android.hardware.telephony“ android:required=false / in your manifest, you should be able to see

[android-developers] Activities

2012-01-10 Thread bt
Hi, I have a problem I can't solve, please help me. My application has an Activity A for example. I have an activity D with dialog theme. This activity starts an other activity with startActivityForResult. I would like to open this activity D from an appwidget from the home screen. If I click

[android-developers] Re: [eclipse-adt plugin] How to make eclipse-adt graphical layout editor work independent of path

2012-01-10 Thread Dave
So in short my question is: I like to be able to freely choose the location of res and assets folders and AndroidManifest.xml file while the eclipse-adt plugin must still work with that. On 9 jan, 16:07, Dave dave.mahabiers...@hotmail.com wrote: Hello, it seems that the graphical layout editor

Re: [android-developers] Re: Giving away my book: Genius Android Marketing

2012-01-10 Thread Abhijeet Kinjawadekar
Hi thanks for the offer... Me too interested in that book On Tue, Jan 10, 2012 at 8:43 AM, Elnoxvie Elnoxvie eln...@gmail.com wrote: Hi, I am developing for a company with a feature app in the market but in this growing market, Marketing becomes essential part of success. i would love

[android-developers] hi

2012-01-10 Thread chowdary nani
Hi All, I am working with json parsing Following is my json object will please any one help me how to parse id from that object in android {data:[{id:38314877099_10150452362217100}]} Thanks Naveen -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] hi

2012-01-10 Thread Robinns
private void parseJson(String j){ JSONObject jObj = new JSONObject(j); JSONArray jArray - jObj.getJSONArray(data); for(int i=0;ijArray.length();i++){ JSONObject post = jArray.getJSONObject(i); System.out.print(post.getString(id)); } } Hope it helps On Tue, Jan 10, 2012 at 5:33

Re: [android-developers] hi

2012-01-10 Thread T.M.S.VIJAYKUMARR
Hi try like this JSONObject jObject = new JSONObject(result); JSONArray Array = jObject.getJSONArray(data); String id = currentjobsArray.getJSONObject(0).getString(id); On Tue, Jan 10, 2012 at 5:18 PM, chowdary nani naveenneeli...@gmail.comwrote: Hi All, I am working with json parsing

[android-developers] Re: hi

2012-01-10 Thread skink
chowdary nani wrote: Hi All, I am working with json parsing Following is my json object will please any one help me how to parse id from that object in android {data:[{id:38314877099_10150452362217100}]} Thanks Naveen http://developer.android.com/reference/org/json/JSONObject.html

Re: [android-developers] Customize Home Screen

2012-01-10 Thread Mark Murphy
On Mon, Jan 9, 2012 at 7:41 AM, Reji Joseph rejijose...@gmail.com wrote: I want to create an app which changes the home screen  after launch. Fortunately, this is not possible. While you are welcome to create a home screen, the user will have to choose to make the app the home screen. You cannot

Re: [android-developers] block application which tries to access internet

2012-01-10 Thread Mark Murphy
On Tue, Jan 10, 2012 at 3:21 AM, Suganya suganyalakshmana...@gmail.com wrote: i want block applications that are trying to access internet android. I should decide whether to allow the application to access internet or not..can i create an application like this Fortunately, this is not

Re: [android-developers] hi

2012-01-10 Thread T.M.S.VIJAYKUMARR
id array mean try this JSONObject jObject = new JSONObject(result); JSONArray Array = jObject.getJSONArray(data); for(int i=0;iArray.length();i++){ JSONObject post = Array.getJSONObject(i); String id = currentjobsArray.getJSONObject(i).getString(id); } *else* JSONObject jObject = new

Re: [android-developers] hi

2012-01-10 Thread chowdary nani
Hi Robinns Thanks for your help thanks for response. your code help me a lot On Tue, Jan 10, 2012 at 5:25 PM, Robinns librain.ro...@gmail.com wrote: private void parseJson(String j){ JSONObject jObj = new JSONObject(j); JSONArray jArray - jObj.getJSONArray(data); for(int

[android-developers] plz help close application

2012-01-10 Thread Dhaval Varia
how can we close app/activity? -- 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

[android-developers] Re: hi

2012-01-10 Thread Robin Thapa
Glad it helped you but that piece of code is not helping me, I have an error which says A JSONObject text must beging with {. Its funny though. On Jan 10, 5:03 pm, chowdary nani naveenneeli...@gmail.com wrote: Hi Robinns Thanks for your help thanks for response. your code help me a lot

Re: [android-developers] Re: hi

2012-01-10 Thread Mark Murphy
On Tue, Jan 10, 2012 at 7:10 AM, Robin Thapa librain.ro...@gmail.com wrote: Glad it helped you but that piece of code is not helping me, I have an error which says A JSONObject text must beging with {. That means you are not passing a JSON object to the JSONObject. JSONObject parses JSON

[android-developers] Re: Giving away my book: Genius Android Marketing

2012-01-10 Thread sell.bergstr
congratulations to this plot to push your self-advertising post without putting hands to it. Really neat. Count me in, too -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] plz help close application

2012-01-10 Thread Mark Murphy
On Tue, Jan 10, 2012 at 7:09 AM, Dhaval Varia dhavalkva...@gmail.com wrote: how can we close app/activity? Your activity can close itself by calling finish(). -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog |

[android-developers] Re: new Developer

2012-01-10 Thread sell.bergstr
why dont you start with reading the android docs? Theres plenty. -- 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] plz help close application

2012-01-10 Thread Ankit Kasliwal
just put android.os.Process.killProcess(android.os.Process.myPid()); to close all activity related with your appliction On Tue, Jan 10, 2012 at 4:19 AM, Mark Murphy mmur...@commonsware.comwrote: On Tue, Jan 10, 2012 at 7:09 AM, Dhaval Varia dhavalkva...@gmail.com wrote: how can we close

[android-developers] Re: How to make eclipse-adt graphical layout editor work independent of path

2012-01-10 Thread sell.bergstr
simple answer: no way. Resources have their fixed place for android, and eclipse goes with that, obviously -- 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

[android-developers] hi all

2012-01-10 Thread chowdary nani
Hi All, I am working with json parsing Following is my json object will please any one help me how to parse id from that object in android {data:[{id:38314877099_10150452362217100,from:{name:Incipio Technologies}}]} Thanks Naveen -- You received this message because you are subscribed to the

[android-developers] Hi

2012-01-10 Thread chowdary nani
chowdary nani 6:01 PM (0 minutes ago) to android-develo. Hi All, I am working with json parsing Following is my json object will please any one help me how to parse name from that object in android {data:[{id:38314877099_ 10150452362217100,from:{name:Incipio Technologies}}]} Thanks Naveen --

Re: [android-developers] Re: hi

2012-01-10 Thread Robinns
Its a JSONArray and i got it. Thanks Mark Murphy On Tue, Jan 10, 2012 at 6:03 PM, Mark Murphy mmur...@commonsware.comwrote: On Tue, Jan 10, 2012 at 7:10 AM, Robin Thapa librain.ro...@gmail.com wrote: Glad it helped you but that piece of code is not helping me, I have an error which says A

Re: [android-developers] Re: Giving away my book: Genius Android Marketing

2012-01-10 Thread Christopher Van Kirk
Genius marketing indeed. Count me in also. On 1/10/2012 8:19 PM, sell.bergstr wrote: congratulations to this plot to push your self-advertising post without putting hands to it. Really neat. Count me in, too -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Difference between fragment add and replace

2012-01-10 Thread Doug Gordon
Yes I did, and it is not clear why I would want to use one vs. the other in many cases since the end behavior seems to be the same. The add method also implies that you're adding the fragment to the activity, whereas replace talks about removing and adding to the container. In general, the

Re: [android-developers] plz help close application

2012-01-10 Thread Mark Murphy
On Tue, Jan 10, 2012 at 7:24 AM, Ankit Kasliwal kasliwalankit2...@gmail.com wrote: just put android.os.Process.killProcess(android.os.Process.myPid()); to close all activity related with your appliction Please do not use this in production applications. -- Mark Murphy (a Commons Guy)

Re: [android-developers] Re: hi

2012-01-10 Thread chowdary nani
Hi Robin, i again need small help in the same thing i.e, to parse name from this object {data:[{id:38314877099_10150452362217100,from:{ name:Incipio Technologies}}]} Thanks Naveen. -- You received this message because you are subscribed to the Google Groups Android Developers group. To

Re: [android-developers] Re: hi

2012-01-10 Thread Ricardo Santos
I would suggest you to use a regular expression and create a String array from the input String, so you can get whatever you want from the array. It has been a while since I used this technique, but I believe this link will help: http://www.regular-expressions.info/java.html On Tue, Jan 10,

Re: [android-developers] Re: hi

2012-01-10 Thread Mark Murphy
Use JSONObject. On Tue, Jan 10, 2012 at 7:48 AM, chowdary nani naveenneeli...@gmail.com wrote: Hi Robin, i again need small help in the same thing i.e, to parse name from this object  {data:[{id:38314877099_10150452362217100,from:{ name:Incipio Technologies}}]} Thanks Naveen. --

[android-developers] Sony Ericsson Smart Extension SDK for SmartWatch and Smart Wireless Headset pro

2012-01-10 Thread Johan Abramsson
Hi Developers out there, Last night we at Developer World released the Smart Extension SDK which you can use to develop Android applications for accessories supporting the Smart Extras API. As of today that is SmartWatch and Smart Wireless Headset pro. To download and get more information please

[android-developers] Re: new Developer

2012-01-10 Thread Robert Massaioli
Here is where you should start: http://developer.android.com/guide/basics/what-is-android.html Follow that and it gives you everything that you need to know. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

Re: [android-developers] Re: hi

2012-01-10 Thread skink
chowdary nani wrote: Hi Robin, i again need small help again, read this: http://developer.android.com/reference/org/json/JSONObject.html pskink -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: Difference between fragment add and replace

2012-01-10 Thread TreKing
On Tue, Jan 10, 2012 at 6:44 AM, Doug Gordon gordo...@gmail.com wrote: Yes I did, and it is not clear why I would want to use one vs. the other in many cases since the end behavior seems to be the same. In your particular use case perhaps. I have not used Fragments yet, but reading the

[android-developers] Re: Giving away my book: Genius Android Marketing

2012-01-10 Thread niko20
Well i did buy the book. A lot of it I already knew from studying other marketing books. But it was still pretty good and has a nice honest frankness style. Some spelling errors here and there but that isnt a big deal. Good work. -niko20 On Jan 10, 6:42 am, Christopher Van Kirk

  1   2   >