Re: [android-developers] Maddening

2011-12-22 Thread TreKing
You continue to confuse this group with one that deals with technical support issues for Android devices. It's not. Try this: http://support.google.com/androidmarket/?hl=en - TreKing

Re: [android-developers] Maddening

2011-12-22 Thread Raghav Sood
It's most likely not compatible with the vizio tablet. Thanks On Thu, Dec 22, 2011 at 6:26 PM, bob wrote: > I have a VIZIO tablet with Android 2.3. > > I'm trying to get this game for it: > > https://market.android.com/details?id=com.ea.game.madden12_na > > When I go into the Market app on the

Re: [android-developers] Re: How can we register broadcastreceiver dynamically (in java file)

2011-12-22 Thread surabhi jain
I think not sure that getResultCode() gives the status of sms that our sms sent or not (no service), it passes integer value and according to that we can fing out the sms status. when I installed my application on emulator then after sending sms, I want that my another activity should launch, but

[android-developers] Maddening

2011-12-22 Thread bob
I have a VIZIO tablet with Android 2.3. I'm trying to get this game for it: https://market.android.com/details?id=com.ea.game.madden12_na When I go into the Market app on the tablet and search, it never shows up. Any ideas why? -- You received this message because you are subscribed to the Goo

[android-developers] Re: How can apps sending and receiving SMSs be visible on the market for the new Galaxy Tablets?

2011-12-22 Thread Terry
As no one has responed to this issue yet, I shall try to explain it in more detail. In order to DO make an app visible for e.g. the Galaxy Tab 10.1 model GT-P7500, one could put the following in the Manifest file: In the app code, one could e.g. use the following too check what features are ava

[android-developers] GPS Status Listener

2011-12-22 Thread BearTi
Hi, I want to receive Events when GPS is tuned on and off. Here my Class: public class Main extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVi

[android-developers] Re: How to pair two devices to transfer file over Bluetooth using NFC

2011-12-22 Thread lbendlin
> > Everything is working fine but i am getting a pairing request or to > match the keys on both the phones which should not come. > How do you know if both devices support unsecure connections? They may just not. -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Re: How can we register broadcastreceiver dynamically (in java file)

2011-12-22 Thread lbendlin
how do you know it is not registering? and what does getResultCode() do? -- 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

Re: [android-developers] Native SIP Supported on all ICS Devices?

2011-12-22 Thread Mark Murphy
The code should be there. SIP support can be disabled by carriers/device manufacturers, as I understand it. On Wed, Dec 21, 2011 at 4:56 PM, Shaun wrote: > From what I understand ICS is supposed to bring devices up to more or > less equal standards, does this include the native SIP library, i.e.

Re: [android-developers] Distributing adb

2011-12-22 Thread Mark Murphy
On Wed, Dec 21, 2011 at 4:54 AM, Brian Rowe wrote: > I'm developing a system for which an Android application is a component.  I > am considering distributing the adb as part of the system.  Does the SDK > license allow me to do this?  Section 3.1 of the license leads me to believe > that (re)dist

Re: [android-developers] Corrupted pictures from camera

2011-12-22 Thread Mark Murphy
I am trying to inexpensively get my hands on an HTC Desire S to try to track down what is going on. This may take some time. On Tue, Dec 20, 2011 at 8:34 AM, Dmitri Hrapof wrote: > Hello! > > As mentioned here: > http://stackoverflow.com/q/8466757/1092612 > > and here > http://stackoverflow.com/q

Re: [android-developers] Re: 4.0 Action Bar - remove app title.

2011-12-22 Thread Mark Murphy
On Thu, Dec 22, 2011 at 1:20 AM, Nathan wrote: > Half of the Actionbar is still set aside for the nonexistent title. And the nonexistent tabs, the nonexistent Spinner, and the nonexistent custom navigation. Probably they are leaving that space in case you enable any of those. > My hope was to fi

Re: [android-developers] Re: How can we register broadcastreceiver dynamically (in java file)

2011-12-22 Thread surabhi jain
I register receiver like that in my activity class registerReceiver(sendreceiver, new IntentFilter(SMS_SENT)); private BroadcastReceiver sendreceiver = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) {

Re: [android-developers] Accessing to Canvas's parent

2011-12-22 Thread Gilberto Cuba Ricardo
Thanks for answering Romain Guy. And, how I can access this Canvas shared by all Views in the same window? Why you say I can understand, that the Canvas of bottom View contains the drawing of other Views, is this true? 2011/12/21, Romain Guy : > a > All views in a same window share a single Can

Re: [android-developers] In-App Purchase Problem - Market Version 3.4.4

2011-12-22 Thread Kostya Vasilyev
Yes, one of my users reported this exact failure last week, and confirmed having Market 3.4.4. He was able to make the purchase yesterday after trying several times, so either it's fixed on Google's side or is intermettent. -- Kostya 20 декабря 2011 г. 23:50 пользователь Justin написал: > Hey E

[android-developers] Re: How can we register broadcastreceiver dynamically (in java file)

2011-12-22 Thread Sveinung Kval Bakken (Giant Leap Technologies AS)
http://developer.android.com/reference/android/content/Context.html#registerReceiver%28android.content.BroadcastReceiver,%20android.content.IntentFilter%29 Just use Context's registerReceiver(), e.g. from your application's onCreate(). Remember to unregister the receiver, from an activity the last

Re: [android-developers] Problem with SQLite Insert command

2011-12-22 Thread Narendra Singh Rathore
On Wed, Dec 21, 2011 at 3:49 PM, Gopal wrote: > > I am new to andriod. I started creating a sample app using Sqlite databse. > When i run the app i m getting this error > > > ERROR/AndroidRuntime(878): Caused by: > android.database.sqlite.SQLiteException: table employee has 11 columns but > 12 va

[android-developers] The accelerometer reading looks odd

2011-12-22 Thread Yang Bo
Hi, I am trying to read the device accelerometer when the phone is placed on a desk with screen up,I expect 0 on the x-axis and y-axis,-9.8 at z-axis. But I get x:11,y:-37,z:-24(decimal part ignore) What is this? I read the doc of accelerometer, does not make it clear. Could you please

[android-developers] Re: Memory leaks when using bitmaps in android

2011-12-22 Thread String
When chasing a problem like this a couple of years ago, my testing seemed to indicate that setting a bitmap to null right after a call to recycle() was leaky. It was as though the recycle call needed some time to work, and setting null got in the way. I found it was better to just call recycle o

Re: [android-developers] [android-developer] How can we rotate image

2011-12-22 Thread tushar sahni
*Hi* * * *accept invitation,,* * * * * *Regards* *Tushar Sahni* -- 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-d

[android-developers] [android-developer] How can we rotate image

2011-12-22 Thread surabhi jain
hii I have attached an image which i want to rotate. plz send me source code. thanks to all. -- 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 f

[android-developers] [android-developer] How can we register broadcastreceiver dynamically (in java file)

2011-12-22 Thread surabhi jain
h, I want to send sms but register receiver dynamically. plz send me the source code. Thanks to all. -- 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 unsu

<    1   2