Re: [android-developers] Problem with resultforactivity and extras

2013-02-17 Thread TreKing
On Sat, Feb 16, 2013 at 9:06 PM, α Centauri lucasact...@gmail.com wrote: Of course I knew that. As you can see in this code, it uses data.getData() to get the image. I might be blind, but I do not see anywhere where you call data.getData. Anyway, what I wanted to do is to attach some info

[android-developers] android:multiprocess attribute of provider element

2013-02-17 Thread Latimerius
Hello, I'm trying to clean up the mess left behind by the semi-secret forward-locking redux clusterf*ck in 4.1. Our base app needs to access files in our expansion APKs' assets/ directories. Apparently, the only way that still works after 4.1 is to use a ContentProvider. As the whole

[android-developers] restoring states

2013-02-17 Thread dashman
Could it be that Activity.onCreate() is called with a valid Bundle - and onRestoreInstanceState() is NOT called. Can that happen? -- -- 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] more adapters, or combine similar ones?

2013-02-17 Thread Joe P.
i have some adapters that i use to create listviews that have 2, 3 and 4 textviews in each row. say i have 2 different objects that both use an adapter that creates the row with 4 textviews. should i use the same adapter for both objects, or have each object use their own adapter to simplify

[android-developers] Refund

2013-02-17 Thread Patrick
Hello, If I refund an app, will it be uninstalled from the customer's device? Or will it continue to work and to be updated with new releases? Thanks, Patrick -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: restoring states

2013-02-17 Thread Lew
dashman wrote: Could it be that Activity.onCreate() is called with a valid Bundle - and onRestoreInstanceState() is NOT called. Can that happen? http://developer.android.com/reference/android/app/Activity.html#onRestoreInstanceState(android.os.Bundle) -- Lew -- -- You received this

Re: [android-developers] Problem with resultforactivity and extras

2013-02-17 Thread Lew
TreKing wrote: α Centauri wrote: Of course I knew that. As you can see in this code, it uses data.getData() to get the image. I might be blind, but I do not see anywhere where you call data.getData. switch (requestCode) { case 1: { if (resultCode == RESULT_OK)

[android-developers] creating a complex tablet app

2013-02-17 Thread bergstr
Hello, I have a rather complex app that runs on tablets only. The complexity stems from the fact that the app allows navigation in a tree to an arbitrary depth, where each node in the tree may have a different appearance (depending on the node type). In addition, I have 3 tabs, that allow

[android-developers] Re: Refund

2013-02-17 Thread Stephen Lebed
As far as I know, there isn't a way remove an app after you issue a refund. I wish there was. It would be great to go into my dev account, find the user I'm refunding the money to, and click a deactivate button or something. For now, I try to discourage refunds by trying to work with the user

[android-developers] Re: No subscriptions in Billing V3 API - permanent?

2013-02-17 Thread Sarbyn
Good news! http://developer.android.com/google/play/billing/billing_subscriptions.html Il giorno lunedì 4 febbraio 2013 16:05:55 UTC+1, Sarbyn ha scritto: I am in the same situation of Nathan. I need to develop billing in my application using a subscription model. How long we could wait

[android-developers] Re: Refund

2013-02-17 Thread John Coryat
Wow! That's crazy! We use in-app billing unmanaged items and handle it ourselves. When a user gets a refund, our server is notified of the transaction by Google Play and automatically shuts down the premium version for the user. As my 4 year old daughter would say Easy peasy. -John Coryat

[android-developers] Re: Refund

2013-02-17 Thread Patrick
I asked this because actually I have the 2 needs: 1) sometimes I may refund an app (almost never happens because my apps are perfectly working ;-) 2) more often, I want to give the app for free to some selected users. And I also want them to have the updates. -- -- You received this message

[android-developers] Re: Refund

2013-02-17 Thread Lew
Patrick wrote: I asked this because actually I have the 2 needs: 1) sometimes I may refund an app (almost never happens because my apps are perfectly working ;-) 2) more often, I want to give the app for free to some selected users. And I also want them to have the updates. In #2, if

[android-developers] Re: Debugging beta apps

2013-02-17 Thread Guy Smith
I've read somewhere not all errors get reported there. Sorry, can't remember where I read that. On Saturday, February 16, 2013 6:04:24 AM UTC+10, bob wrote: In the Google app Developer Control Panel, there's a link that says Errors sometimes. Then you can see how your app crashed for

Re: [android-developers] Debugging beta apps

2013-02-17 Thread Guy Smith
There are two parts to this. One, you need to get stack dumps back from your app. Two, you need to find testers. I set up testing in December. ACRA is essentially being phased out (IMHO) - see https://github.com/ACRA/acra/wiki/Notice-on-Google-Form-Spreadsheet-usage. There are several tools

[android-developers] Re: Debugging beta apps

2013-02-17 Thread Guy Smith
Briefly: I used HockeyApp for reporting back capability, and was happy. I used ElusiveStars, a forum and TheBetaFamily to find testers, and got best results from ElusiveStars. A more detailed post is at https://groups.google.com/d/topic/android-developers/PrW2hFpZzpk/discussion. On

[android-developers] Re: creating a complex tablet app

2013-02-17 Thread Lew
bergstr wrote: I have a rather complex app that runs on tablets only. The complexity stems from the fact that the app allows navigation in a tree to an arbitrary depth, where each node in the tree may have a different appearance (depending on the node type). In addition, I have 3 tabs,

Re: [android-developers] Debugging beta apps

2013-02-17 Thread Mark Murphy
On Sun, Feb 17, 2013 at 5:59 PM, Guy Smith g...@multiniche.org wrote: ACRA is essentially being phased out (IMHO) - see https://github.com/ACRA/acra/wiki/Notice-on-Google-Form-Spreadsheet-usage. You are welcome to your opinion, but there are plenty of ACRA back-ends available, including ACRA's

[android-developers] Re: creating a complex tablet app

2013-02-17 Thread b0b
I have to agree with the OP somewhat. The thing is...that the Fragment API is horrible. Overly complicated and complex and error prone. As if the activity lifecycle wasn't complex enough, a new one on top of that was added. It shows that it was designed in a hurry to get the first version of

Re: [android-developers] creating a complex tablet app

2013-02-17 Thread Kristopher Micinski
On Sun, Feb 17, 2013 at 12:30 PM, bergstr sell.bergst...@gmail.com wrote: Hello, I have a rather complex app that runs on tablets only. The complexity stems from the fact that the app allows navigation in a tree to an arbitrary depth, where each node in the tree may have a different

Re: [android-developers] Problem with resultforactivity and extras

2013-02-17 Thread TreKing
So I *am* blind =) - TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago transit tracking app for Android-powered devices -- -- You received this message because you are subscribed

Re: [android-developers] Refund

2013-02-17 Thread TreKing
On Sun, Feb 17, 2013 at 10:57 AM, Patrick patrick.god...@gmail.com wrote: If I refund an app, will it be uninstalled from the customer's device? No. Or will it continue to work and to be updated with new releases? Continues to work but they do not have access to updates. On Sun, Feb 17,

[android-developers] Application not Visible on emulator Screeen

2013-02-17 Thread Sagar Rout
My application is not visible on my emulator screen but when i check my manage application. I see that my application is installed on the emulator but not visible on the screen. I try task manager to kill adb.exe i restart the emulator several times and also uninstalled the application and

[android-developers] communication between project and library project.

2013-02-17 Thread rachana govilkar
Hello all, I have a problem and i did search it but couldn't get clear solution.So please help me asap. Scenario is : I have 2 projects viz project 1 and project 2. project 1 has 1 activity say activity A and project 2 has activity B C. Now project 1 is library project and included in project 2.

Re: [android-developers] Android c++ service at boot time

2013-02-17 Thread Anil Sasidharan
Hi, You may want to write a JNI layer for this and have an activity to load the JNI shared lib. You need to implement a broadcast receiver for BOOT_COMPLETED intent to start this activity... Makes sense? And regarding accessing libusb from JNI, I presume that the respective device node is