Re: [android-developers] Convert a view (layout) to a Bitmap

2013-01-27 Thread a1
W dniu niedziela, 27 stycznia 2013 04:04:22 UTC+1 użytkownik Justin Buser napisał: I did actually, not that it's really relevant. I also looked back through the aosp commit logs and found a grand total of 1 commit that he made, but that's not really relevant either as it doesn't really

[android-developers] mapping in searchable dictionary

2013-01-27 Thread νιяιη¢нソ
hello everyone, i am new to android and learning it with sample code and recently found a searchable dictionry sample in sdk samples. How is the mapping of words done in this example? With Regards, samjeck -- -- You received this message because you are subscribed to the Google Groups Android

[android-developers] mapping of words in searchable dictionary sample

2013-01-27 Thread sam jeck
hello everyone, i am new to android and learning it with sample code and recently found a searchable dictionry sample in sdk samples. How is the mapping of words done in this example? With Regards, samjeck -- -- You received this message because you are subscribed to the Google Groups Android

[android-developers] AR (augmented reality) and open gl.

2013-01-27 Thread JossieKat
I would like to know if there is simple example of overlaying open gl above camera stream to create AR I managed to draw graphics above camera stream using canvas but could not do it with open gl . -- -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Play store - reviews disappear

2013-01-27 Thread Giuseppe
We are experiencing some review deletion from our play store. Anybody here is having the same problem? -- -- 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] Send video url to be played in Media Player

2013-01-27 Thread oneking
How can I send a video url to be played in Media Player? I have this code but does not work: protected void loadDolphin(Channel channel) { Intent viewMediaIntent = new Intent(); viewMediaIntent.setAction(android.content.Intent.ACTION_VIEW);

Re: [android-developers] how to see remaning part of screen without scroll settings..

2013-01-27 Thread Yogita singla
-- -- 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 options,

Re: [android-developers] how to see remaning part of screen without scroll settings..

2013-01-27 Thread Piren
i think he took your advice... On Saturday, January 26, 2013 10:17:20 PM UTC+2, TreKing wrote: Please bump this thread a little more frequently than every two hours and use more question marks. I'm sure that will not annoy anyone and will surely help you get an answer.

Re: [android-developers] how to see remaning part of screen without scroll settings..

2013-01-27 Thread skink
Piren wrote: i think he took your advice... I don't think so: too few ? pskink -- -- 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

Re: [android-developers] AlertDialog and AsyncTask

2013-01-27 Thread Piren
I'm assuming you have a reference of that dialog... if you're worried that an instance of an object was removed, just check it isnt null first :-) You can also use the dialog's events (as TreKing suggested) to cancel the asynctask (which means onPostExecute wont be called) On Sunday, January

[android-developers] Re: ListView content thread sync cases

2013-01-27 Thread Bill Michaelson
My confusion has been due to the lack of appreciation that in spite of the fact that the server-obtained updates run asynchronously in a Thread started by the Service, the initial Service logic is part of the main thread which is shared with the Activities. I had coded the Handler in one of

[android-developers] Input/Output stream

2013-01-27 Thread TGundhus
Hello. I am using the example from the android development sites on outputstream to save a string to the internal storage, and I'm trying to get it with the use of inputstream.. But can't get it to work =/ What I want is to store a string and easily be able to get it from other activities,

[android-developers] How to check if an Android phone has front and rear facing cameras?

2013-01-27 Thread saex
Hi I need to detect if the phone has a front facing camera, and if so, I need to calculate the megapixels. The same thing goes for a rear facing camera. I know how to get the megapixels of a Camera object, but I don't know how to check for the other things. P.s.: I would also be nice if

[android-developers] Re: How to check if an Android phone has front and rear facing cameras?

2013-01-27 Thread Nobu Games
Take a look at the Camera APIhttp://developer.android.com/reference/android/hardware/Camera.html. What you're trying to do is pretty straightforward. 1. Get amount of cameras available with Camera.getNumberOfCameras() 2. Call Camera.getCameraInfo(idx, cameraInfo) for each available

[android-developers] Re: Input/Output stream

2013-01-27 Thread Nobu Games
If I understand you correctly you just want to pass on strings from one Activity to the other. You should use the Intent object that calls the other Activity for storing that string as an extra: intent.putExtra(EXTRA_KEY, The string you want to pass on); startActivitiy(intent); Where EXTRA_KEY

Re: [android-developers] AlertDialog and AsyncTask

2013-01-27 Thread TreKing
On Sat, Jan 26, 2013 at 8:37 PM, dashman erjdri...@gmail.com wrote: but if the Dialog instance has been dismissed - won't that instance be gone and therefore dialog.isShowing() would result in an error. No. dismiss() does not somehow magically null out the reference on which it's called. It

Re: [android-developers] mapping in searchable dictionary

2013-01-27 Thread TreKing
On Sun, Jan 27, 2013 at 3:59 AM, νιяιη¢нソ joinvir...@gmail.com wrote: How is the mapping of words done in this example? Don't you have the very sample to look at and answer that for yourself? -

[android-developers] Re: Play store - reviews disappear

2013-01-27 Thread Tim
yes, but just 1 on 2 apps Am Sonntag, 27. Januar 2013 12:59:21 UTC+1 schrieb Giuseppe: We are experiencing some review deletion from our play store. Anybody here is having the same problem? -- -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Play store - reviews disappear

2013-01-27 Thread John Coryat
Are the ones you see missing recent or historical? It may be that Google is cleaning up ratings. I see no change, at least in recent reviews. -John Coryat, USNaviguide LLC On Sunday, January 27, 2013 5:59:21 AM UTC-6, Giuseppe wrote: We are experiencing some review deletion from our play

[android-developers] ArrayAdapter in background thread

2013-01-27 Thread dashman
Can an ArrayAdapter (holding data for a ListView) be modified in a background thread. I'd like to modify the array and then call adapter.notifyDataSetChangedhttp://developer.android.com/reference/android/widget/ArrayAdapter.html#notifyDataSetChanged%28%29 () -- -- You received this

Re: [android-developers] ArrayAdapter in background thread

2013-01-27 Thread TreKing
On Sun, Jan 27, 2013 at 5:26 PM, dashman erjdri...@gmail.com wrote: Can an ArrayAdapter (holding data for a ListView) be modified in a background thread. I'd like to modify the array and then call

Re: [android-developers] ArrayAdapter in background thread

2013-01-27 Thread Mark Murphy
On Sun, Jan 27, 2013 at 6:26 PM, dashman erjdri...@gmail.com wrote: Can an ArrayAdapter (holding data for a ListView) be modified in a background thread. I'd like to modify the array and then call adapter.notifyDataSetChanged() You cannot modify the *adapter* in a background thread if it is

[android-developers] Fragment Transition Animation Crashes

2013-01-27 Thread Doug Gordon
The following code used to work fine in a previous iteration of my app that was targeted to V11 but used the support library to support fragments, etc., from the minimum V7 and up: Fragment frag = ShowExhibit.ShowExhibitFrag.newInstance(args); FragmentTransaction ft =

Re: [android-developers] ArrayAdapter in background thread

2013-01-27 Thread dashman
mark, You can modify the ArrayList directly from a background thread. How can i do that - i don't see any api for this. -- -- 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] ArrayAdapter in background thread

2013-01-27 Thread dashman
nevermind - i decided to subl-class BaseAdapter Thanks. On Sunday, January 27, 2013 7:36:06 PM UTC-5, dashman wrote: mark, You can modify the ArrayList directly from a background thread. How can i do that - i don't see any api for this. -- -- You received this message because you

[android-developers]

2013-01-27 Thread Jayavelu Viswanathan
Hi friends very amazing File manager its free application in android market Download and use it. below is link available please give me feed back and use continuously...

[android-developers] problem accessing external library

2013-01-27 Thread Jungle Jim
I have been using jsoup 1.6.3 successfully in an Android app to read data from a website. I recently upgraded the Android SDK tools to version 21.0.1 and the Android SDK Platform-toolls to version 16.0.1 and now it no longer works. When I rebuild the application, install it on a device, and

[android-developers] problem accessing external library

2013-01-27 Thread Jungle Jim
I have been using jsoup 1.6.3 successfully in an Android app to read data from a website. I recently upgraded the Android SDK tools to version 21.0.1 and the Android SDK Platform-toolls to version 16.0.1 and now it no longer works. When I rebuild the application, install it on a device, and run

[android-developers] Re: problem accessing external library

2013-01-27 Thread Jungle Jim
I just figured out the answer. For some reason, the new Android SDK tools need any external libraries to be accessed from a libs directory that is a subdirectory of the project's directory. I made the directory and copied the jsoup library to it, redid the build path, and voila! It works! On

[android-developers] Re: Play store - reviews disappear

2013-01-27 Thread Giuseppe
recent. On Sunday, January 27, 2013 10:03:03 PM UTC+1, John Coryat wrote: Are the ones you see missing recent or historical? It may be that Google is cleaning up ratings. I see no change, at least in recent reviews. -John Coryat, USNaviguide LLC On Sunday, January 27, 2013 5:59:21 AM

Re: [android-developers] AlertDialog and AsyncTask

2013-01-27 Thread Tamilarasi Sivaraj
I think are you wanted after finishing the process in AsyncTask after that the dialog will close and your result will be displayed correct.. Is that you want you dismiss your dialog you use the code below.. *protected void onPostExecute(String str) { /*your code here*/ dialog.dismiss(); }* On

[android-developers] Creating new intent with data android:scheme...

2013-01-27 Thread ntt broken
Hi, How can i create an intent (Java code) that will be compatible with intent filter declared? for example, if this is the intent filter declared in the AndroidManifest.xml: activity android:name=.MyUriActivity intent-filter action android:name=android.intent.action.VIEW / category