Re: [android-developers] Need help in every way!

2016-03-19 Thread Tushar Lal
ther process & application. As for the third question either you have to share the crash logs or your code. And for your forth and final question we can only say after seeing the code. But by the description that you provided it can't be that bad. Regards: Tushar Lal On Wed, Mar 16, 2016 at

Re: [android-developers] Touch and Drag Image - Tutorial

2016-02-03 Thread Tushar Lal
Remove the android.R package and import the one which is having a package name similar to your project package. On Feb 4, 2016 4:53 AM, "Foo Fabulous" wrote: > >

Re: [android-developers] How to prevent existing user from receiving bad app update

2015-05-05 Thread Tushar Lal
If you are some kind of repository for your code you can revert to the stable version then in your manifest file increase the app version and app code. Then publish it again. I know that this might not be the perfect solution but it is a work around. Regards Tushar Lal On 9:06AM, Wed, May 6

Re: [android-developers] Opensource messaging.

2014-09-18 Thread Tushar Lal
You can take a look at Ejabberd for server and asmack lib for android device. On Sep 17, 2014 10:35 PM, yogendra G yogi2...@gmail.com wrote: Dear All, I am in need of some nice open source for message broadcasting between many android devices without using GCM. Please help me out. Thanks

Re: [android-developers] Positioning Buttons side by side in Linear Layout (one button multi-lined)

2014-06-25 Thread Tushar Lal
Instead of sp try dp... On Jun 25, 2014 7:06 PM, 'RLScott' via Android Developers android-developers@googlegroups.com wrote: Two buttons are to be placed side by side in a horizonally-oriented LinearLayout whose width is match_parent. To make the buttons share the width equally I have

Re: [android-developers] Multiple build created using single library project are not working

2012-07-13 Thread Tushar Lal
://sites.google.com/site/magouyaware On Fri, Jun 29, 2012 at 8:20 AM, Tushar Lal tush...@gmail.com wrote: Hi, I have created a library project containing a service. When I first build it and install it on my phone it works fine, but when I create the second build using the same library project

Re: [android-developers] Multiple build created using single library project are not working

2012-07-13 Thread Tushar Lal
? and is that proper instantiated before use? Regards Imran Ali On Friday, July 13, 2012 4:05:53 PM UTC+5:30, Tushar Lal wrote: LOGCAT OUTPUT: 07-13 15:23:23.954: E/AndroidRuntime(655): FATAL EXCEPTION: main 07-13 15:23:23.954: E/AndroidRuntime(655): java.lang.RuntimeException: Unable to start

[android-developers] Multiple build created using single library project are not working

2012-06-29 Thread Tushar Lal
Hi, I have created a library project containing a service. When I first build it and install it on my phone it works fine, but when I create the second build using the same library project and install it on my phone, the first build works fine but the second one crashes. Also when I run the

Re: [android-developers] Re: i am looking job on android in banglore

2012-03-27 Thread Tushar Lal
I have a work experience of 1.3yr in Android, Blackberry, in which I have created both native phonegap application. I have worked on a Mobile banking application, Stock Trading application, Album/Artist Application and some native Blackberry applications. Regards: Tushar On Tue, Mar 27, 2012

Re: [android-developers] Re: i am looking job on android in banglore

2012-03-27 Thread Tushar Lal
Period Thanks, Sapna On Tue, Mar 27, 2012 at 12:07 PM, Tushar Lal tush...@gmail.com wrote: I have a work experience of 1.3yr in Android, Blackberry, in which I have created both native phonegap application. I have worked on a Mobile banking application, Stock Trading application, Album

Re: [android-developers] Re: i am looking job on android in banglore

2012-03-27 Thread Tushar Lal
PM, Eric Wong (hdmp4.com) ericwon...@gmail.com wrote: On Mar 27, 5:37 pm, Tushar Lal tush...@gmail.com wrote: I have a work experience of 1.3yr in Android, Blackberry, in which I have created both native phonegap application. I have worked on a Mobile banking application, Stock Trading

[android-developers] Magic-8-Ball in phonegap

2012-03-05 Thread Tushar Lal
I wish to design Magic-8-Ball in android using phonegap, but I have no idea where to begin. Can some one please guide on how to develop or where to start looking on how to create the app. Regards: Tushar -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: application with same size in all the mobile

2011-12-21 Thread Tushar Lal
int dp = 2;final float scale = getResources().getDisplayMetrics().density;int dip = (int) (dp * scale + 0.5f); Use this dip to declare size of your U.I. components the size of that U.I. components will remain same in all android based phone. eg: Button button = new Button();