[android-developers] Drag and Drop View

2016-07-29 Thread Bhavin vasundhara
I have 2 dimensions list. The first is a category list and inside each category there is an item list. I want to use drag and drop for moving an item up and down in the list. The problem is that one object is textview and another is Expandable List view, so when I long press on the textview then

[android-developers] Scrolling Issue

2016-07-29 Thread Bhavin vasundhara
I use drag and drop in a list. When the list is too long, I want that when I drag an item into the 10% of the top screen area, it will scroll up and same way when I drag an item into the 10% of the bottom screen area, it will scroll down. How do I define those 10% top and bottom of the screen

[android-developers] How to disable the x axis in the code you use to move floating objects.

2016-07-28 Thread Bhavin vasundhara
how to disable the x axis in the code you use to move floating objects so objects move only y-axis? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[android-developers] How to make 10% of the top of a screen, sensetive. That when entering with a slide into this area it will scroll up. When i drag the Textview to another view

2016-07-28 Thread Bhavin vasundhara
How to make 10% of the top of a screen, sensetive. That when entering with a slide into this area it will scroll up. When i drag the Textview to another view -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group

[android-developers] javax.mail.Authenticationfalied exception

2013-01-09 Thread Bhavin
*Dear sir, I am trying to send email using GMAILSender class. I have tried it few month ago,it was working well. but now it is showing following exception: javax.mail.Authenticationfalied exception Please help to resolve this issue. :) Thanks Regards* -- You received this message

[android-developers] Bluetooth Signal Strength

2012-07-01 Thread Bhavin
*Dear Sir,* * * *I need to measure Signal strength of Bluetooth like :App Bluetooth Finder * * * *Would you please help me to find out,how to do this?* * * *moreover this,i need to show kind of bar ,which could show signal strength. * * * *:)* *Thanks Regards* -- You received this message

[android-developers] Query regarding unbounded service

2012-06-02 Thread Bhavin
Dear Sir, in my application,i have 24 Buttons [12 group of Two [12 * 2], 1 for SET Other for Reset]. - [Group 1] I am having

[android-developers] problem in service creation

2012-06-02 Thread Bhavin
Dear sir, I am having following scenario: Service class . . . .(Extends) Class1 . . . . (Extends) Class2 Now i wanted to start class2 as a service. what to do? Thanks in advance :) -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Bluetooth chat application problem

2012-05-07 Thread Bhavin
Dear sir i am using Samsung Galaxy y android 2.3.3 I have installed Bluetoothchat Example on my phone. when i run Connect Secure/Insecure then it always show unable to connect I have debugged application. i found the error is : javaIO exception Service Discovery failed Please help me to solve

[android-developers] how to connect Bluetooth using MAC

2012-05-03 Thread Bhavin
Dear Sir, I am developing one application,in which i am communication with my Laptop. when I send command to laptop,application on it should works accordingly. Now i am using BT dongle.i know its MAC address. but the problem is 1. How to make pair with that dongle,by our application 2. using

[android-developers] Help for android Micro-controller interface

2012-03-13 Thread Bhavin
Dear all, I am new in micro-controller related stuff. please let me know,if following is possible? 1. I am trying to fire my application from external hardware interface. 2. I know i can fire ADB commands from PC. Is there any possibility that,some controller [I don't know which,please

[android-developers] Android Gmail Authentication failed

2012-03-04 Thread Bhavin
Dear Sir, I am using http://stackoverflow.com/questions/2020088/sending-email-in-android-using-javamail-api-without-using-the-default-android-a For Sending an Email. I am doing 1. Static Entry of Username password in side the code. 2. Send 5 email repeatedly from the code Problem : 1.

[android-developers] Android Widget with AlarmManager and Configuration

2011-12-08 Thread Bhavin
project I get lots of error. Can anyone please refer me any document or example that may help me? Regards, Bhavin Mistry. -- 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

[android-developers] Widget do not update automatically

2011-11-28 Thread Bhavin
Hi, I have a very simple widget and I want it to be updated every 30 minutes. So I extended AppWidgetProviders as follow, public class Testwidget extends AppWidgetProvider { int COUNT = 0; @Override public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[]

[android-developers] Image in ListView flicks when calling notifyDataSetChanged method.

2011-09-09 Thread Bhavin
I have a listview, extended from BaseAdapter. I have implemented a functionality of a never ending list, when user reaches at the end of the list, adapter fetches new rows from internet. I also load images in each row, they also come from internet. I use AsyncTask to load images asynchronously.