Re: [android-developers] Re: word wrapping

2011-09-14 Thread Óscar de la Mata
Hi Kenny. Do you mean Soft Wrap? If so. Go to: Main menu Eclipse Preferences Java Code Style Formatter Edit (Active Profile) Line wrapping (tab) And config here your wrap preferences. Saludos! 2011/9/13 Kenny Riddile kfridd...@gmail.com On 9/13/2011 4:38 PM, Tor Norbye wrote: He's

Re: [android-developers] Changing the Android SDK Device ID.

2011-09-14 Thread Yohanes Khosiawan
Do you mean the emulator's device ID? maybe this could help: http://stackoverflow.com/questions/4686263/change-the-device-id-on-an-android-emulator On Wed, Sep 14, 2011 at 7:08 AM, sblantipodi perini.dav...@dpsoftware.orgwrote: As title. Is this possible? -- You received this message

[android-developers] inquary about to join the group.

2011-09-14 Thread Rax
Hey.. I want to Join Android Group n want to develop some application for the above. But how? -- 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] Joining Android developers

2011-09-14 Thread Mouheb Ismail
Dear sir, I'm a embedded systems graduated student , very intrested in Android SDK and I hope to join this group. Regards -- 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: Help for IP camera

2011-09-14 Thread swapnil26sharma
is there any proxy or directly from internet ? On Sep 14, 12:18 am, kirti waykole kirti.carr...@gmail.com wrote: hello Friends,  I want use IP camera in my application just to capture image or video. As i am new in android . Please help me for how i can use IP camera in my program. -- You

[android-developers] Re: Out Of Memory Error with Images loaded through XML

2011-09-14 Thread A.
Hi Sorab, I have a similar issue: please could you provide more code to better undestand the solution that you found? Thanks, A. -- 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] Fwd: Regarding the Android application development

2011-09-14 Thread shyam prasad
-- Forwarded message -- From: shyam prasad shyam.jul...@gmail.com Date: Wed, Sep 14, 2011 at 10:06 PM Subject: Regarding the Android application development To: android-developers@googlegroups.com Hi Team, This is Shyam Prasad from Mahindrasatyam, Pune, India. I am new to

[android-developers] doubt on cookies

2011-09-14 Thread Devendran Raju
how to use cookies. i dont know how to store cookies. can u please cleare my doubt. 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

[android-developers] Re: How make Bluetooth constantly discoverable

2011-09-14 Thread darrinps
It's not so much that t is hard, and you can vary the discovery time: http://stackoverflow.com/questions/3190623/make-bluetooth-on-android-2-1-discoverable-indefinitely The thing is though, it eats battery so you probably don't want to do it. On Sep 14, 2:45 am, Luitas liuta...@gmail.com wrote:

[android-developers] retrieve resource string from plain class

2011-09-14 Thread John Goche
Hello, I would like to retrieve the value of a resource string from a plain class that does not have a Context superclass. Is this possible? I see the API: http://developer.android.com/guide/topics/resources/string-resource.html which do not list getString and getText as static methods. I

[android-developers] Re: retrieve resource string from plain class

2011-09-14 Thread Kenny Riddile
On 9/14/2011 3:41 PM, John Goche wrote: Hello, I would like to retrieve the value of a resource string from a plain class that does not have a Context superclass. Is this possible? I see the API: http://developer.android.com/guide/topics/resources/string-resource.html which do not list

Re: [android-developers] The Application stopped Unexpectedly Please try again

2011-09-14 Thread Mark Murphy
Use adb logcat, DDMS, or the DDMS perspective in Eclipse to examine LogCat and look at the stack trace associated with your error. On Wed, Sep 14, 2011 at 9:45 AM, abhishek karande abhishek.kara...@gmail.com wrote: Hello All Im trying to Develop web Application for Android my task is so simple

Re: [android-developers] Where was my app stored on the smartphone? (When using Eclipse)

2011-09-14 Thread TreKing
On Tue, Sep 13, 2011 at 4:54 PM, byhesed ideemons...@gmail.com wrote: I tried to find files related to the app; however, I couldn't. App files are private to the app - (though I think there are ways to make it not so).

Re: [android-developers] I AM USING THESE CODES STILL FACING PROBLEM IN DISPLAYING GOOGLE MAP

2011-09-14 Thread TreKing
Yelling in your title and not even explaining what your issue is will get you nowhere. - TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago transit tracking app for Android-powered

Re: [android-developers] Getting error android.process.acore has stopped unexpectedly on 2.3.1

2011-09-14 Thread Mark Murphy
This typically occurs when the development PC is too slow or is too busy when the emulator is launching. Sometimes, apparently it can also occur when the AVD is corrupt, so you could try deleting and re-creating your emulator AVD file. On Wed, Sep 14, 2011 at 2:41 AM, Himanshu Rathore

Re: [android-developers] simple XML attribute inheritance question

2011-09-14 Thread Mark Murphy
On Wed, Sep 14, 2011 at 11:22 AM, John Goche johngoch...@googlemail.com wrote: Where am I going wrong with my reasoning. The valid android:layout_* attributes are not determined by the class of the widget, but the class of the LayoutParams. -- Mark Murphy (a Commons Guy) http://commonsware.com

Re: [android-developers] basic question: inserting horizontal rule in user interface

2011-09-14 Thread Mark Murphy
Use something like: View android:background=# android:layout_width=match_parent android:layout_height=2dip / On Wed, Sep 14, 2011 at 11:45 AM, John Goche johngoch...@googlemail.com wrote: Hello, I was wondering whether there is a way to insert an HTML-like horizontal rule (hr /) in

Re: [android-developers] Log when Force Close button clicked

2011-09-14 Thread Mark Murphy
On Tue, Sep 13, 2011 at 3:31 PM, Brandon bhilliar...@gmail.com wrote: How would I know when the user clicks the Force Close button? You won't.  I want to distinguish when my application closes because of an exception and when the user closes the application. Don't crash. Or, use Thread and

Re: [android-developers] Abusing system privileges?

2011-09-14 Thread Mark Murphy
On Wed, Sep 14, 2011 at 1:19 PM, Peter Knego pe...@knego.net wrote: It seems that it's possible to acquire system privileges by adding android:sharedUserId=android.uid.system to manifest and using platform.pk8 platform.x509.pem from android GIT to sign the app. The claim is here:

Re: [android-developers] Where was my app stored on the smartphone? (When using Eclipse)

2011-09-14 Thread kaushik p
are you trying to find the apk of your app in SmartPhone ?? On Wed, Sep 14, 2011 at 3:52 PM, TreKing treking...@gmail.com wrote: On Tue, Sep 13, 2011 at 4:54 PM, byhesed ideemons...@gmail.com wrote: I tried to find files related to the app; however, I couldn't. App files are private to the

[android-developers] Re: HttpURLConnection with POST method

2011-09-14 Thread Alan
Thank you so much for sharing that link... it helped me a great deal. I wound up combining parts of that code with others to come up with this: /* Note: these are some methods in a class I wrote. mURLString is the url to * talk to such as http://somesite/somefile.php;; parameters are the

[android-developers] Re: Is my brother authorized to buy and review my app?

2011-09-14 Thread sblantipodi
This is what I am afraid of. The only problem is that I really have no idea to release an unprotected APK just to donate one license. This is unacceptable for everyone who care his software. I don't care about reviews, I just want to donate a copy and let the person who download it to download

[android-developers] Android development Online course at UCI

2011-09-14 Thread Nency Robert
HI All, I am new to android development. As I am still in learning phase, I have searched so many courses and materials on google for it. I found one interesting course which is online. It is held at University of California, Irvine Extension. I am planning to enroll for this course. So anyone

[android-developers] Re: Back button problem in android

2011-09-14 Thread Vance Turnewitsch
First, I think you are asking a user question. This is a developer forum. I would suggest looking for the android market help forum. http://www.google.com/support/forum/p/Android+Market/label?lid=1d903020a35e806ehl=en. Or contact the developer of the app. Also for the time being, developers

[android-developers] sophisticated widgets

2011-09-14 Thread bob
Is there a good place where I can get sophisticated widgets to just plug into my app? I could really use a spreadsheet widget. -- 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: android, get screen size in api 3.2

2011-09-14 Thread IcedNet
When are you calling this? I routinely get the tablets' full screen sizes via this method in onCreate Peace, Dan On Sep 13, 5:22 pm, avillar alfonso.vil...@gmail.com wrote: In API 3.2 when you get the screen height, it seems that return value is the screen height minus the height menu bar.

[android-developers] Black screen issue

2011-09-14 Thread ar
Hi, Sometime when I launch my app, I see a black screen. I see this exception in the logs - it is not from my app. Does anyone know what is causing this? 09-14 13:54:42.023: INFO/HomeKeyDoubleClick(2976): addAction() is called. action = 1 canceled = false 09-14 13:54:42.023:

Re: [android-developers] Re: multiple cancelled orders with in-app billing?

2011-09-14 Thread John Coryat
Wonder what they were changing this time... carrier billing? Some clever engineer made a quick change, didn't test it and then went on vacation. -John Coryat -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] Re: Back button problem in android

2011-09-14 Thread kaushik p
its very simple , in back button only the finish(); is executed . It means that the existing activity is canceled . If that activity leads to the last GUI screen of you application then the application gets closed . Try to override it . On Wed, Sep 14, 2011 at 4:52 PM, Vance Turnewitsch

Re: [android-developers] I AM USING THESE CODES STILL FACING PROBLEM IN DISPLAYING GOOGLE MAP

2011-09-14 Thread kaushik p
Buddy , did you correctly do keytool stuff and md5 footprint thing .? If you have done that then check the permissions you have used in your manifest file . You must give permission for access internet , gps location .Check the exact names and use them .Even then if dont get it let me know . On

Re: [android-developers] Fwd: Regarding the Android application development

2011-09-14 Thread kaushik p
there is a website called GOOGLE , use it .You will get it in the first link :) On Wed, Sep 14, 2011 at 12:39 PM, shyam prasad shyam.jul...@gmail.comwrote: -- Forwarded message -- From: shyam prasad shyam.jul...@gmail.com Date: Wed, Sep 14, 2011 at 10:06 PM Subject:

Re: [android-developers] The item you were attempting to purchase could not be found. problem

2011-09-14 Thread TreKing
On Wed, Sep 14, 2011 at 4:55 AM, monty neilm30s...@gmail.com wrote: Is this a Market issue or is it because of multiple apks i am using .Could some1 please give a solution .I have tried all possible ways .I even updated the apk with new version but still the same problem. 99% of the time you

Re: [android-developers] any good tutorials for making ringtone apps?

2011-09-14 Thread TreKing
On Wed, Sep 14, 2011 at 12:15 AM, Project Nerd Rage n...@projectnerdrage.com wrote: Anyone know of a good tutorial on making ringtone apps in eclipse? I'm sure you searched Google already ... otherwise it would help if you explained what you think ringtone apps are.

Re: [android-developers] google map PROBLEM

2011-09-14 Thread TreKing
On Wed, Sep 14, 2011 at 2:08 AM, Swapnil Sharma swapnil26sha...@gmail.comwrote: MapView mMapView = new MapView(this, 0iPfyUCdrBSuIGmumwpfwvQFOy-In7XLB9c3G7Q); setContentView(mMapView); setContentView(R.layout.main); What do you expect to happen when you do this?

Re: [android-developers] Re: Is my brother authorized to buy and review my app?

2011-09-14 Thread TreKing
On Wed, Sep 14, 2011 at 3:42 PM, sblantipodi perini.dav...@dpsoftware.orgwrote: Is this illegal? That's a question for your lawyer. - TreKing http://sites.google.com/site/rezmobileapps/treking -

[android-developers] Re: Exists a svg library that works fine for android?

2011-09-14 Thread Zsolt Vasvari
That library is open source. Improve on it so that it supports the features you need (and send your improvements back to the project). On Sep 14, 10:44 pm, saex elpablos...@gmail.com wrote: do not exist? On 14 sep, 13:07, saex elpablos...@gmail.com wrote: That library works only with

Re: [android-developers] Abrir URL desde android y no mostrar barra de direcciones o fuente del sitio

2011-09-14 Thread Cristhian Flores
Que tal. Te dejo este enlace para que lo mires http://www.ibm.com/developerworks/opensource/library/os-eclipse-webui/index.html?ca=drs- Tambien busca en san google acerca de ExternalInterface.call Saludos. El 14 de septiembre de 2011 02:47, scout-pistolero scoutpistol...@gmail.com escribió:

[android-developers] Optimizing applications for Smartphone and Tablet

2011-09-14 Thread Diego N.
Good evening. Does anyone know any article that talks about optimization application for Smartphone and Tablet? An example is the app of GDD 2011 ( https://market.android.com/details?id=gdd11.appfeature=search_result) that is different when you open the Smartphone and Tablet. Thank you. Att,

Re: [android-developers] Re: XML files and SQLITE Database

2011-09-14 Thread Cristhian Flores
Hi Bishan I hope is helpful private var sqlc:SQLConnection = new SQLConnection(); // sqlc is an SQLStatment which we need to execute our sql commands private var sqls:SQLStatement = new SQLStatement(); // ArrayCollection used as a data provider for the datagrid. It has to be bindable so that

Re: [android-developers] showing progressdialog from service to an activity

2011-09-14 Thread TreKing
On Wed, Sep 14, 2011 at 11:07 AM, Winson Nashin winsonfo...@gmail.comwrote: i want to show a progress dialog to my activity when the mediaplayer was preparing..in service.. Look at the LocalService example in the Service documenation. here is my activity code No one is going to wade

[android-developers] View subclass

2011-09-14 Thread bob
So, I created my own View subclass like this: public class StatsTable extends View { public StatsTable(Context context) { super(context); // TODO Auto-generated constructor stub } @Override public void onDraw(Canvas canvas) {

Re: [android-developers] View subclass

2011-09-14 Thread Mark Murphy
If StatsTable is in the com.coolgroups.bob package, you would use: com.coolgroups.bob.StatsTable android:id=@+id/hello ... / Note that you would need a different (additional) constructor, one that takes an AttributeSet as the second parameter. See my ColorMixer custom widget:

[android-developers] Re: Help for IP Camera

2011-09-14 Thread gjs
Hi, Typically connect via http from Android download or stream the bytes, your IP camera should have instructions. Regards On Sep 14, 5:16 pm, kirti waykole kirti.carr...@gmail.com wrote: hello Friends,  I want use IP camera in my application just to capture image or video. As i am new in

Re: [android-developers] Optimizing applications for Smartphone and Tablet

2011-09-14 Thread TreKing
On Wed, Sep 14, 2011 at 6:07 PM, Diego N. diegonunes.sist...@gmail.comwrote: Does anyone know any article that talks about optimization application for Smartphone and Tablet? The documentation and the Developer Blog.

[android-developers] fling

2011-09-14 Thread bob
Let's say you are developing a subclass of View. To process motions, you're using a GestureDetector. How do you make the fling event correctly fling your stuff? Do you have to fire up a background thread? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] help on dalvik VM.

2011-09-14 Thread Pratik Prajapati
Dear All, There are a lot of classes in my (big) APK which are used no where(some test code is part of the APK with the actual service). Will dalvik VM keep these classes in memory at runtime? ( many classes are not used to create any object out of them). As per my understanding, dalvik creates

[android-developers] 800x600 HDPI device?

2011-09-14 Thread Zsolt Vasvari
One of my customers is using a device with this spec. It's a very unusual resolution and It sounds like a squarish phone. Anybody has a clue which one it is? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] Android development Online course at UCI

2011-09-14 Thread TreKing
On Wed, Sep 14, 2011 at 3:48 PM, Nency Robert angelgirl4...@gmail.comwrote: So anyone have any idea about how the course is, please let me know. Go on their site or search for alumni of this college. I also want to know if anyone has any idea about it, what is the difference between

[android-developers] java object passing in android: json or binder?

2011-09-14 Thread Pratik Prajapati
which ones give better performance while marshaling/de-marshaling of java objects between two android apks, json or binder aidl? Regards, Pratik -- 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: Read NfcA card

2011-09-14 Thread xiaoailsa
Hi,Michael!Thanks your hints! I have try read smart card,this is my program: Tag tagFromIntent = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG); IsoDep tag = IsoDep.get(tagFromIntent); try{ tag.connect(); tag.setTimeout(20); byte[] commandAPDU= new byte[]{ (byte)0x00, (byte)0xA4, (byte)0x04,

[android-developers] Re: java object passing in android: json or binder?

2011-09-14 Thread Zsolt Vasvari
Do you have a performance issue? If not, do what's simpler and don't waste your time optimizing something that probably doesn't make a difference in the end. On Sep 15, 10:17 am, Pratik Prajapati pratik.prajap...@gmail.com wrote: which ones give better performance while

[android-developers] Re: Back button problem in android

2011-09-14 Thread Indicator Veritatis
Overriding the Back key is usually a bad idea. Even though most users are not technical enough to understand what it means to call 'finish()' on an Activity, they do get used to what it means in practice: the Activity is removed from the Activity stack and 'destroyed'. Be VERY careful about going

[android-developers] Re: How make Bluetooth constantly discoverable

2011-09-14 Thread Indicator Veritatis
All other devices? None of mine do. Nor do I want them to. As already pointed out, it is a drain on the battery. Nor is this the only problem. You can't do ANYTHING else with Bluetooth while your device is trying to do discovery. Twenty or thirty seconds should be enough. The user is doing

[android-developers] Re: Abrir URL desde android y no mostrar barra de direcciones o fuente del sitio

2011-09-14 Thread Indicator Veritatis
san google? When did Google get sainthood? On Sep 14, 4:00 pm, Cristhian Flores cif...@gmail.com wrote: Que tal. Te dejo este enlace para que lo mireshttp://www.ibm.com/developerworks/opensource/library/os-eclipse-webui... Tambien busca en san google acerca de ExternalInterface.call

[android-developers] Re: Abrir URL desde android y no mostrar barra de direcciones o fuente del sitio

2011-09-14 Thread Indicator Veritatis
Also, the link you gave him is about integrating a Web UI into Eclipse itself. But that is not what he is asking for: he is talking about one application (he didn't say where, presumably on an Android phone) having a link to another, the latter being a web application. I don't see how integrating

Re: [android-developers] inquary about to join the group.

2011-09-14 Thread TreKing
On Wed, Sep 14, 2011 at 4:01 AM, Rax rax.m...@gmail.com wrote: I want to Join Android Group n want to develop some application for the above. But how? To Join Android Group ... well, you're done. Welcome. To develop some applications for the above: learn to program, read

Re: [android-developers] Re: XML files and SQLITE Database

2011-09-14 Thread Bishan
thanx Cristhian. i'll check this. On 9/15/11, Cristhian Flores cif...@gmail.com wrote: Hi Bishan I hope is helpful private var sqlc:SQLConnection = new SQLConnection(); // sqlc is an SQLStatment which we need to execute our sql commands private var sqls:SQLStatement = new SQLStatement();

[android-developers] Are you taking on new clients?

2011-09-14 Thread Mohan Rao
If you're taking on new clients, I'd like to include you in my private referral network to send you business leads through Referral Key. Please accept my invitation below. Thanks! Best, Mohan Rao Sriven Technologies LLC Mc Lean, VA 414-434-9779

Re: [android-developers] Re: How make Bluetooth constantly discoverable

2011-09-14 Thread Kristopher Micinski
I wanted to do this once. The answer is: Bluetooth probably isn't intended to be used for that thing you're trying to do. Kris (P.s., the reason people typically cite is that they want to randomly bond with other devices running their app so they can get a truly peer to peer app, but I think

Re: [android-developers] Re: Abrir URL desde android y no mostrar barra de direcciones o fuente del sitio

2011-09-14 Thread Francisco Dalla Rosa soares
Indicator Veritatis as you already bullied the spanish speaking people, how about providing the information he might be looking for? As you didn't bother to reply in spanish you could provide some english links to help solve his problem. what about that? scout-pistolero you'll probably have to

[android-developers] Re: Why is the default to use dpi instead of screen size for drawables

2011-09-14 Thread ArcDroid
Correct it is a mdpi. The problem I have is that my app crashes if i use 160dpi graphics so using 90dpi looks ok on a phone, but poor on a tablet. Hence the only solution I have found is to use the drawable- xlarge for the larger screens. On Sep 14, 6:30 am, Mark Murphy mmur...@commonsware.com

[android-developers] Re: How make Bluetooth constantly discoverable

2011-09-14 Thread Zsolt Vasvari
How does something like Bump work? On Sep 15, 11:25 am, Kristopher Micinski krismicin...@gmail.com wrote: I wanted to do this once. The answer is: Bluetooth probably isn't intended to be used for that thing you're trying to do. Kris (P.s., the reason people typically cite is that they

[android-developers] fragment transactions in onLoadFinished()

2011-09-14 Thread Nikolay Elenkov
I have a simple activity with a list fragment on the left and a details fragment on the right. Tapping a list item kicks off a loader which gets some data over HTTP and delivers it in onLoadFinished(). That works fine, but I'd like to change the detail fragment at this point. Calling

[android-developers] can we record a video without displaying the preview.

2011-09-14 Thread krishna chaitanya
hi I am trying for video recording without displaying the preview. But an IO exception is coming while i calling prepare(). Is it possible ? regards, Krishna -- 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: Out Of Memory Error with Images loaded through XML

2011-09-14 Thread Sorab Pithawala
Hi there, I have made a ZIP file containing the code, XML and a small readme. Download from BitmapTest.zip http://db.tt/hXH0d00. Regards, Sorab On 14 September 2011 18:56, A. andreabl...@gmail.com wrote: Hi Sorab, I have a similar issue: please could you provide more code to better

[android-developers] IllegalArgumentException locking surface

2011-09-14 Thread ar
I see this exception in the logs. Does anyone know what is causing this? It is annoying because the menu keys become inactive in my app screen and sometimes the UI elements disappear. 09-14 13:54:42.023: INFO/HomeKeyDoubleClick(2976): addAction() is called. action = 1 canceled = false 09-14

Re: [android-developers] Re: Help for IP camera

2011-09-14 Thread kirti waykole
directly coonect through cross cable to my pc now for testing on emulator. On 9/14/11, swapnil26sharma swapnil26sha...@gmail.com wrote: is there any proxy or directly from internet ? On Sep 14, 12:18 am, kirti waykole kirti.carr...@gmail.com wrote: hello Friends,  I want use IP camera in my

[android-developers] OpenGL Problem

2011-09-14 Thread OpenGl
Hi every one I am strucked up with a problem - I am developing a new game called tower of hanoi - I have drawn a disc and tower - I have placed a disc on the tower but the tower is going behind - I am unable to see the towewr emerging fron the disc Any one knows the solution for this thank you in

<    1   2