Re: [android-developers] Strange SQLite error, possibly in native code?

2013-09-29 Thread tarun sablok
There should be one column in your database which should be named *_id* , its common error !!! On Sun, Sep 29, 2013 at 3:35 AM, Kostya Vasilyev kmans...@gmail.com wrote: Hello, One of my users reports a crash like this: android.database.sqlite.SQLiteException: no such column: _id (code 1):

[android-developers] Re: debugging break pint not hittting

2013-09-29 Thread Piren
check you didnt forget android:debuggable=true in the manifest On Friday, September 27, 2013 3:00:22 PM UTC+3, Sadhna Upadhyay wrote: Hi guys, m trying to debug my codebut it is not hitting any line ,but in other project its working then why it is not working in one project please let me

Re: [android-developers] Html.fromHtml limitations.

2013-09-29 Thread Piren
I've used both methods (webview and html textview) and found that both had their issues (especially with aligning images with text across screen sizes)... eventually nothing beats just doing it all using separate ui elements. On Saturday, September 28, 2013 3:02:54 AM UTC+3, Nathan wrote:

[android-developers] Re: Strange SQLite error, possibly in native code?

2013-09-29 Thread Piren
never came across such a report, but if it's isolated to that specific query maybe try replacing it with a rawQuery instead and see if it makes a difference. On Sunday, September 29, 2013 1:05:26 AM UTC+3, Kostya Vasilyev wrote: Hello, One of my users reports a crash like this:

[android-developers] Problem with tax data migration to Wallet

2013-09-29 Thread Joan Pujol
Hi, Has someone had problem with the migration from financial data from the last system to wallet? For me the bank data and tax data was corrupted and I had to enter it again. I was able to enter another time the bank data but I haven't been able to enter the tax data because the form doesn't

[android-developers] Determine when view/views below my view have changed

2013-09-29 Thread Harri Smått
Hello All, I'm in the midst of implementing somewhat dynamic background blur effect for Android (similar to what iOS7 has) and I'm keen to have this one optimisation in place. In my implementation I'm trying to achieve following: 1. I extend default layout classes and call them blur layouts 2.

[android-developers] Unexpected SecurityException

2013-09-29 Thread elio francesconi
Hi all, I wrote an application it controls dynamically the AIRPLANE_MODE, this is the piece of code: * // toggle airplane mode android.provider.Settings.System.putInt( mContext.getContentResolver(), android.provider.Settings.System.AIRPLANE_MODE_ON, on ? 1 : 0); // Post an

Re: [android-developers] Unexpected SecurityException

2013-09-29 Thread Harri Smått
Hi, I would be more interested why other devices you've ran this code on (?) have not caused similar exception. According to docs Intent.ACTION_AIRPLANE_MODE_CHANGED should be protected for system usage only. -- Harri On Sun, Sep 29, 2013 at 6:06 PM, elio francesconi

Re: [android-developers] Xml file corrupted over sprint cellular network ?

2013-09-29 Thread Robert Greenwalt
We have contacts with many of the carriers and I had them ask Sprint about this. On Sat, Sep 28, 2013 at 3:34 AM, Gaurav Sharma gauravsharma...@gmail.comwrote: @robert: How do you such information? have you faced this situation before or have they contacted you ? On Sat, Sep 28, 2013 at

[android-developers] Re: InApp Billing v3 and multiple accounts

2013-09-29 Thread Alexander Osmanov
Kj, I did a research today, published my app through alpha testing on Google Play and tried downloading it using several accounts. I can confirm that IAB is NOT limited to primary Google account. Whichever account I use for downloading the app from Google play is then used for IAB. On

[android-developers] Re: Is anybody using amazon S3 for uploading files from android?

2013-09-29 Thread Dev Droid
@Frank LoVecchio Can you share the code please how did you did uploaded to s3 using multipart please ? On Friday, March 18, 2011 9:34:52 PM UTC+5:30, Frank LoVecchio wrote: I've gotten a multipart upload to work, I will give it a shot on Android and get back to you Monday if you haven't

Re: [android-developers] Re: Strange SQLite error, possibly in native code?

2013-09-29 Thread Kostya Vasilyev
Yes, that's what just did in a dev build, will see it helps. Curiously enough, the framework's SQLiteQueryBuilder uses a StringBuilder that is initially 120 chars long, and the corruption happens at 112'th character. I've long anticipated an Android device with firmware that calculates 2+2 as

[android-developers] Re: InApp Billing v3 and multiple accounts

2013-09-29 Thread kj
Weird, I didn't realize that the Google Play downloading account would be used, although this makes sense. Ultimately though the user making the purchase isn't configurable by your app since you'll be stuck with the downloading Google account anyway. On Sunday, September 29, 2013 2:40:11 PM

[android-developers] Re: InApp Billing v3 and multiple accounts

2013-09-29 Thread Alexander Osmanov
Yes, that is my problem if I want to bind server side to Google account. I can't rely on first account being the one I should use and I don't think that something like showing an account picker and saying choose the account you used for purchasing blah blah to create blah blah is a good idea.

[android-developers] how to create button with one image background and one image inside and text

2013-09-29 Thread Amit Mangal
Hi Team, hope you all are doing good. i want to create a button with one image in background and one inside button and want to write small text on that. i have attached the sample picture any idea how to create that . i want to add text inside button image dynamically . thanks -- You received

[android-developers] Re: InApp Billing v3 and multiple accounts

2013-09-29 Thread kj
The Google IAB dialog has the Google account name that will be associated with the purchase. In-app purchases are generally understood to be tied to your Google account and apps you download/purchase are associated with the account used in Google play. You could force your users to create user

Re: [android-developers] Re: InApp Billing v3 and multiple accounts

2013-09-29 Thread Nikolay Elenkov
On Mon, Sep 30, 2013 at 7:56 AM, kj scwee...@gmail.com wrote: The Google IAB dialog has the Google account name that will be associated with the purchase. In-app purchases are generally understood to be tied to your Google account and apps you download/purchase are associated with the account

Re: [android-developers] Re: InApp Billing v3 and multiple accounts

2013-09-29 Thread kj
I'm not saying that getting the Google account name via the API wouldn't be useful, but unfortunately that doesn't exist right now. I agree that forcing accounts is not user friendly and probably isn't a good idea for the majority of apps, but it is an option that may be considered. Sticking