[android-developers] Android Google Play marketplace changed permissions in application now won't allow update

2012-04-28 Thread slipp3ry
I added uses-permission android:name=android.permission.WRITE_EXTERNAL_STORAGE uses-permission android:name=android.permission.ACCESS_NETWORK_STATE to an already published application. Now in Google Play it recognises it as an installed application, takes the user through to Open or Update

[android-developers] Resources$NotFoundException report from wild

2011-10-17 Thread slipp3ry
I just released an update and got an exception report from the wild after someone updated a previously working application. The same code works on my phone, the resource is a raw file and not dependant on device, local dependant or anything. I had a similar thing happen before while developing

[android-developers] Re: Resources$NotFoundException report from wild

2011-10-17 Thread slipp3ry
useless for them and that makes me feel awful. On 18 Oct, 01:51, TreKing treking...@gmail.com wrote: On Mon, Oct 17, 2011 at 7:47 PM, slipp3ry slipp3ry_whip...@yahoo.co.ukwrote: I just released an update and got an exception report from the wild after someone updated a previously working

[android-developers] Adroid mystery of view changing class

2011-09-06 Thread slipp3ry
CODE: Button b = new Button(this); b.setText(m.group()); RelativeLayout.LayoutParams lP = new RelativeLayout.LayoutParams( RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT); int iDELETE_AFTER_TEST_ID;

[android-developers] Re: Adroid mystery of view changing class

2011-09-06 Thread slipp3ry
Murphy mmur...@commonsware.com wrote: Do not use getId() as the basis for assigning other IDs to other widgets. You want to stay very far away from the numbers used by the build tools. On Tue, Sep 6, 2011 at 6:39 AM, slipp3ry slipp3ry_whip...@yahoo.co.uk wrote: CODE:  Button b = new

[android-developers] Re: Adroid mystery of view changing class

2011-09-06 Thread slipp3ry
/ reserving id's on the fly for dynamic allocations but will leave validation routines in place to make sure there are no unwanted consequences. Thanks again. On 6 Sep, 12:23, Mark Murphy mmur...@commonsware.com wrote: On Tue, Sep 6, 2011 at 7:19 AM, slipp3ry slipp3ry_whip...@yahoo.co.uk wrote

[android-developers] Cursor oddity, only observed on 1.6 emulator

2011-07-11 Thread slipp3ry
Please could anyone help before I grind what's left of my teeth away and pull what's left of my hair out. 07-08 14:54:58.623: INFO/dalvikvm(404): Uncaught exception thrown by finalizer (will be discarded): 07-08 14:54:58.623: INFO/dalvikvm(404): Ljava/lang/ IllegalStateException;: Finalizing

[android-developers] Re: Detecting BACK button press on AlertDialog

2011-04-18 Thread slipp3ry
Using dismiss listeners If you'd like your application to perform some procedures the moment that a dialog is dismissed, then you should attach an on-dismiss listener to your Dialog. First define the DialogInterface.OnDismissListener interface. This interface has just one method,

[android-developers] Something I said?

2011-03-22 Thread slipp3ry
I posted a question about assigning frame animations to image views in a grid, no answers and now it looks like my post got deleted. Maybe I should have titled it PLZ HELP as even that post got some answers? Was it my content? subject matter? surely I can't be the first person to

Re: [android-developers] Something I said?

2011-03-22 Thread slipp3ry
Thanks for the reply Miguel, I was starting to feel like the invisible man :) Title was Best way to start a frame animation in an adapter Anything offensive or horribly newbie? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: Best way to start a frame animation in an adapter

2011-03-20 Thread slipp3ry
Is this something people don't do? Does everyone use palette animation techniques or some other methodology instead? It has to be a fairly commonly used technique (loading animation for image views in a grid view for example) but all I can find on the web are other un-answered queries? --

[android-developers] Best way to start a frame animation in an adapter

2011-03-19 Thread slipp3ry
I'm trying to start a standard frame animation in an array adapter ImageView myImage =(ImageView)proximityView.findViewById(R.id.imgMyImage); myImage.setBackgroundResource(R.drawable.loading_animation); AnimationDrawable frameAnimation = (AnimationDrawable) myImage.getBackground();