Questions tagged [android-1.6-donut]

For issues relating to developing with the android SDK, version 1.6 (Donut).

Android version 1.6, code name Donut and API level 4, is one of the earlier versions that has been released on 15th September 2009. This is the lowest version that is covered by Google's support package supports package.

Android 1.6 Feature Page

25 questions
0
votes
1 answer

Error while setting the theme programatically using custom titles

I am getting android.util.AndroidRuntimeException when i am setting the theme using setTheme method. here is my code: @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); …
mudit
  • 25,306
  • 32
  • 90
  • 132
0
votes
1 answer

Navigate Between Activities in an ActivityGroup

I'm developing an app which contain TabHost ,in one of those tabs i have an ActivityGroup , and from this ActivityGroup, i launch another SubActivity ( let's say that i Launch an Activity A ), and until this , everything is OK. The problem is when i…
Houcine
  • 24,001
  • 13
  • 56
  • 83
0
votes
3 answers

Multiple AsyncTasks load the same WebView

I'm trying to run many AsyncTasks to do loadData() on the same WebView. For example, I have 3 threads with 3 contents: "One", "Two", "Three" and a WebView with content "abc". (like the code below) After 3 tasks finished, I want the WebView has…
emeraldhieu
  • 9,380
  • 19
  • 81
  • 139
0
votes
2 answers

Include .so library to android ndk project

I'm beginning with android NDK. I have to compile a native library for the 1.6 sdk (mupdf) but it requires the ljnigraphics lib (which was added lately on 2.2). I'm trying to include the compiled library to my android project but I can't figure out…
parser_failed
  • 697
  • 9
  • 20
0
votes
3 answers

Android upgrade from 1.6 to 2.2 results in exceptions

My application works fine with Android 1.6, but when I run it on Android 2.2 I get concurrentModificationException in some places. After wrapping my head around it for days, I've come up with a theory: I guess that multi-threading (or something…
0
votes
1 answer

Make a call and play a message? (Android 1.6)

I have an application that will need to make a call and play a recorded message. Is that even possible?
BFreeman
  • 750
  • 2
  • 7
  • 18
0
votes
1 answer

Check if startScan success

I would like to check if the method wifiManager.startScan() has effectively success to make an AP scan. This method returns true if the start has begun, but not if the scan has succeed. Indeed, I sometimes receive the message "Failed to initiate AP…
lukronos
  • 75
  • 1
  • 11
0
votes
2 answers

how to install load,install the apk in karbonn tablet and how to add the file manager in karbonn tablet.?

We are developing some android application.It used android 1.6. When we deploy the application in that application samsung tablet, it works. But if we try to deploy into karbonn tablet, we cannot deploy it. There is no file manager in karbonn…
SIVAKUMAR.J
  • 4,258
  • 9
  • 45
  • 80
0
votes
1 answer

Is there any LBS like google which is allowed in China and have Android API?

We are developing a mobile application in Android for mobile and tablet. We use Android version 1.6. In our application we use Google Maps API for displaying location details. One of our application deployment places is China. In china Google's LBS…
0
votes
2 answers

Where is "Google APIs" for Android 1.6?

I am going through the video tutorial at O'Reilly video training course "Developing Android Applications with Java" by Tony Hillerson. He mentioned that I must build my app against the "Google APIs" rather than the standard Android 1.6 API to use…
1
2