android

Android Porting

How start with writing drivers for our hardware after downloading the kernel patches...? How to implement system.img to match with our zImage? ...

Problem with LowLevelHttpTransport in unit tests

I'm currently trying to run some unit tests on a class that uses HTTPtransport and is part of an Android application. The docs for google-api says that this should be fine since the Apache transport is built into Android. However, when running my tests I get the following error: java.lang.IllegalStateException: unable to load Net...

view.setId problem in Android ?

HI, I have a imageView iv1 in my app, and i want to set a phone number as id to the imagview,so that whenever i click i need to do some operation using the phone no. i have done like this : String res = util.removeCharacters(value, "0123456789"); Long var = Long.parseLong(res); System.out.println("Sketch"+var.intValue()); iv2.set...

display the song in listview but it's not working

hai, i want to display many song using list view now i am create but its not working some problem in my coding help me what mistake i made when i run the emulator will display The application mexample (process mexample.mexample)has stopped unexpectedly. please try again my log cat error is 10-27 21:26:36.847: INFO/ActivityManager(...

Right mime-type for <data> tag into intent-filter

where can i view the correct mime-type for intent-filter for this action Intent.ACTION_VIEW on this data: android.provider.ContactsContract.Contacts.CONTENT_URI ? ...

Android: KeyboardView doesn't appear above EditText

Hi, I'm trying to have an EditText and the possibility to display a keyboard at the bottom of the screen when the user taps the EditText. I'm aware of the InputMethodService and the SoftKeyboard example, but I can't use it in that fashion as my keyboard should only be available to this very EditText. Furthermore, there should be a cont...

I can't solve this problem...

I connect a ıp cam(jpeg), and show this image, and ı repeat continually, After a while my app error this... my codes: public void parse(InputStream is){ try { if (!type.isMjpegStream()) { CameraManagerScreen.ActiveCam.setConnected(true); setImage(is); is.close(); ...

Need Help in Fixing Force Close Issue in Android?

Hai Friends, I have created an sample application, in which i have a list view, when the user clicks the listview the next intent is called with no problem in sometimes, but most of the times it display Force Close or Wait Message as shown in the Image attached here, i want to stop displaying this Force Close or Wait Dialog, I...

Calling main activity from BroadcastReceiver

Hi All, While developing an alarm based application, i have stuck in a scenario. When my alarm is fired, i can receive the event in BroadCastReceiver::onReceive(). Within this function, i want to notify/call a function, which is located on MainActivity. How to achieve the same?? ...

What mobile network types allow http traffic during phone calls?

Would this Android code be a correct way to test for http network availability during a phone call, or does it exclude networks that should be included or vice versa: public boolean isOnline() { TelephonyManager tm = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); if (tm.getNetworkType() > Telephon...

how to add button dynamically to progress dialog android?

Hi, I added dynamic message successfully to my progressdialog.But when adding the button it doesn't take the button Please help me out. private Handler progressHandler = new Handler() { @Override public void handleMessage(Message msg) { // process incoming messages here switch (...

Communication between Tabhost Activity class and parent Activity Class which renders it

I have a main class which renders tabwidget (tabhost) as follows: intent = new Intent().setClass(this, Articles.class); // Initialize a TabSpec for each tab and add it to the TabHost spec = tabHost.newTabSpec("articles").setIndicator("Articles", res.getDrawable(R.drawable.ic_tab_articles)) .setCo...

Need Help in Fixing Parse Exception?

Hai Friends, I have wrote one application, which parses the data from the given url and displays data's in list, most of the time parsing and showing the data in list is works fine, but a few time i am getting the Following error in my logcat and the list view is empty, Log Cat Message: Exception in Parsing cons org.xml.sa...

Insert vCard in Android

I'm trying to import and export contact on an Android phone as vCards. Export works fine and i get the vCard string. But how can i insert a contact from a vCard string? I wasn't able to find any sample code :( Greets, Goddchen ...

I can't solve this problem...( After a while my app error this...)

I connect a ıp cam(jpeg), and show this image, and ı repeat continually, After a while my app error this. And I tested other phone and showed this one. 10-28 15:12:51.525: ERROR/AndroidRuntime(675): Uncaught handler: thread Thread-11 exiting due to uncaught exception my codes: public void parse(InputStream is){ try { if (!type...

Need help while using the android.telephony package

I am using the following code to make a call from an Android application public class CallActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); call(); } private void call()...

GPS Tracking capturing the Longitude and Latitude values saving for every 30mins

Hello, I am new to Android, I am developing GPS based application Using windows xp and eclips Galileo and Android 2.2 SDK Any one knows how to get GPS tracking values of Longitude and Latitude for every 30mins and saving in to memory then when an emergency time we have to send those values to server using GPRS connection, if not availa...

Going from runnable to asynctask

I was trying to get my method running in background using Asynctask, but using sample from the book for a basis the only thing I get is crashed application. At moment I am using this code: private Handler mHandler = new Handler(); private Runnable mUpdateTimeTask = new Runnable() { public void run() { Location location = tra...

Android emulators not simulating correct density or resolution. Possibly a surfaceview implementation issue.

I’m building a small app that is using a surfaceview class that extends surfaceholder.callback. It is implemented just like the lunarlander example. My problem is that each type of emulator I use (low, medium or high density) doesn’t seem to actually change the density of the screen or the resolution to what I would expect. I recently...

Android WebView Download Listener

Hi.. Did anyone know how to get the full url to the content that should be downloaded in webview. I notice there is setDownloadListener (DownloadListener listener) method where we can get the url onDownloadStart method. But i have problem when i open page A, i click hyperlink in page A and directly open a new page B. In page B i downlo...