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: > > > I tried to fol

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, 20

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

2012-03-26 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-26 Thread Tushar Lal
Notice Period > > Thanks, > Sapna > > > On Tue, Mar 27, 2012 at 12:07 PM, Tushar Lal 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 >> banki

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

2012-03-26 Thread Tushar Lal
12:21 PM, Eric Wong (hdmp4.com) < ericwon...@gmail.com> wrote: > On Mar 27, 5:37 pm, Tushar Lal 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 ap

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

Re: [android-developers] Opensource messaging.

2014-09-17 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" 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 & Br, > Y

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

[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 Develo

[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 second

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

2012-07-13 Thread Tushar Lal
rson > MagouyaWare Developer > http://sites.google.com/site/magouyaware > > > On Fri, Jun 29, 2012 at 8:20 AM, Tushar Lal 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 wh

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

2012-07-13 Thread Tushar Lal
on 302 line number? 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

[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(); button.setWidth(20*