android

Duplicate ImageView and Progress Bar for ListView Image

Friend's I need help on getting image in Listview by using Drawable class without duplicate,suppose if use Bitmap Factory to show the images in listview i won't have any problem,but it takes much time to load images.and also i need to set the progressbar image for each image in listview until it loads the image url completely.help me. ...

Setting up Android code for different runtimes

Hi: I am working on an Android application that is supposed to run on Android 1.5 and later devices. I am using RawContacts.CONTENT_URI enumeration for registering a ContentObserver in my application subclass. Now, RawContacts was introduced in Eclair and running this code on Android devices having runtime less than 2.0, gives java.lang...

display a button that can turn off the screen like the power button

I'm learning about the android. Now, I want to display a button that can turn off the screen. That is when the user click the button the screen off as the user click the power button. How can I do this? Thank you. ...

we can't enter android market from Turkiye, and ı want donwload language pack for tts....

how can ı add language pack for TTS service outof android market?? or ıf I want, how can I write my language pack and add it?? ...

ListView and propagating click events from children views in the items

I have a ListView with custom items - 3 ImageViews and a TextView. I have a call to setItemsCanFocus(true), so I can make the ImageViews clickable. I'm currently using SimpleAdapter to populate the View. I'd like to trigger the AdapterView's onItemClick event when one of those subviews is clicked. The onItemClickListener receives a view...

jUnit testing Database operations.

Hello. I'm developing an Android application with database storage. I want to test some classes that I use to access database. I've found ActivityInstrumentationTestCase2 to test Activities but I haven't found anything to test classes. How can I do that? I haven't used jUnit before. Thanks. ...

Android communicating with servers

I come from a .Net background and recently x-training to java. I wanted to develop an Android application that required simple functionality to communicate with a server. For example, functionality such as post a username/score to a website (or service), or request information such as top 10 scores. What type of communications should I...

Setting TextView to new string?

I used the layout resource editor to modify the main.xml layout file to add a second TextView control to my app. by default, its set to something like @+id/TextView01. How do I Set the text attribute of the TextView control to my newly created String resource? I tried going into main.xml and just editing the android:text to point to the ...

android How to detect if the application have run in the past

Hello I would like to know if and how it is possible to detect if my application have run in the past on a given android device. I would like every time the phone reboots to be able to check if my application has run on the past and retrieve some private data. If not just create those data. regards maxsap ...

My Android "massage viberator" application does not stop vibrating even after the process is killed?

I will try to be as brief as possible... I have published a very simple android application it's name is "Vib-e-rator PRO". It's purpose is obvious, it can be used as a masssage vibrator or as an erotic stimulator... My Problem is don't have an Android Phone to test my app in real time. I have been recieving mixed comments from people....

How to develop plugins for the native Android browser

Hi stackies, I searched the web but no luck: how can plugins for the native Android browser be developed?! Neither Google nor the Android SDK give information about this topic. Thanks for your help! Best regards S. ...

Place view to right of other view and vertically centered relatively to this view using RelativeLayout.

Hello I was wondering if there is a way for placing a view to the right side of another view and centering it vertically on the second views height. In know this can be done using a LinearLayout, but for other reasons the 2 views must be part of the same RelativeLayout. Thanks a lot ...

Android Java - Putting all file names from R.raw into array without manually specifying each

There are 2 parts to my question but both are related. I have searched all over the place but cannot find a way to put in an array, all file names from R.raw, such as MP3s in string format. I also want to create new buttons on the fly in Java, as opposed to using the XML files to lay out buttons. psuedocode: array[] = put all file nam...

Can't get GPS coordinates

G'day. I'm develop android application that uses GPS module. API version that i use is Google API8. I'm implements LocationListener interface and setup listener LocationManager lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE); MyLocationListener myLocationListener = new MyLocationListener(); lm.requestLocationUpdates(...

Android Licensing Server on a device

I'm trying to figure out the whole Android licensing thing, and getting frustrated. In the emulator, I run the app with no account, or one that isn't in the testing environment, and it seems to work correctly, returning the not licensed response and pops up the buy the app now message. When I try to run it on an actual Android device, i...

Need Help in Tab changed Listener?

Hai Friends, I have implemented tab Listener, when i am clicking on the tabs it loads the data in the list view with no problem, if i click other tab options it also load fine, again if i click the first one i am getting the following the exception in my log, i do not know why i am getting this?, so please help me on this. ...

Get User-Agent using Android API

Hi, Kindly provide me the Android code to get the User-Agent from the Android mobile device like in J2me where we can get System information about the mobile device using the J2me API. Also , is there any list of Rdf or useragent string/ xml for the different Android devices available in the market. Kindly help. Warm Regards, Chiran...

Getting an advanced structured object with Ksoap2 from a WCF-service to an Android app

Hello, What I want to accomplish is the following. Create a WCF webservice that is called by an android application. The webservice should return alot of information that is gathered from a large database. The information will consist of a View with 20 different tables with around 1-2 rows in each tables containing information. The...

Conflicting resource id of two different project's R.java

Hi all, I have two different project A & B. Inside the project A I link the source from project B so activity from project A can start the activity from project B. I'm using Eclipse Galileo. The problem is, when I want to edit the value of a view in activity B, the resource id from both projects have some conflicts in it. So when I cal...

Android difference between two dates in seconds

I've tried different methods around the web but couldn't make it work. Cursor cursor = sqlite.myDataBase.rawQuery("SELECT StartDate, EndDate FROM Tracks Where Id="+'"'+trackId+'"',null); SimpleDateFormat outputFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date startDate = outputFormat.parse(cursor.getString(cursor.getCol...