For issues relating to developing with the android SDK, version 2.1.
0
votes
0answers
23 views
Android App In 2.1 and how can i Use Gcm for this Version onWards
Am Developing an Android Application minimum sdk=7 and Target sdk=18.And Now we are plan to launch new version with GCM.How the Notifications for 2.1 and all versions.sorry for my english.Without ...
1
vote
0answers
79 views
Wrapping long text in notification on API level 7
In my app I have a service that performs network-related activities and displays notifications if errors occur. The error text may be reasonably long - to provide enough details. In newer versions ...
5
votes
1answer
183 views
Understanding XML attributes for custom packages
I'm trying to use the drag/drop functionality from this fine project: https://github.com/bauerca/drag-sort-listview/
First, I've added the library using the instructions on GitHub.
Second, I'm ...
0
votes
2answers
279 views
setImageBitmap in BaseAdapter#getView doesn't update ImageView
I have an app that downloads a bunch of images in a background thread. As each icon gets downloaded, I add it to an ArrayList in my custom Adapter which subclasses BaseAdapter. Each row in the ...
10
votes
1answer
265 views
Is there a way to add reminders to a new calendar event using Intents?
I need to support Android 2.1 and up. I know that CalendarContract isn't available in Android 2.1, so I've done the following workaround.
Intent intent = new Intent(Intent.ACTION_EDIT)
...
8
votes
1answer
250 views
How to add structured data to a new contact Intent
I need to support Android 2.1 and up.
Google posted an example of how to use the ContactsContract, but some of it used things that are available starting with API level 11, so I need to improvise, ...
0
votes
1answer
67 views
Adding a new contact to the address book through my Android app targeting Android 2.1+
When my app wants to add a new contact to the device's address book, I'd like a dialog to pop up that asks the user whether the app can add "Some Contact" to their address book, and I'd like that ...
0
votes
1answer
774 views
Android app working on 2.3 but not on 4.0
Ok, I have been working on a Android application for a while. It's basicaly a RSS reciever. I use RSS to check the news, weather forecast, TV schedule and Horoscope.
Everything was fine while I was ...
0
votes
1answer
221 views
How Android View Hierarchies work
I have a WebView that I would like to expand to fullscreen. The user will interact with it, so it needs to maintain some sort of state when it expands. The ideal process is this:
- Remove WebView ...
0
votes
1answer
64 views
Problems with standard Search in Android 2.1. Running in another process?
My application use standard search mechanism (using searchable interface) and works well in all versions>2.1
In <3 I use Search Dialog and in >=3 I use SearchWidget and all works correctly. The ...
0
votes
0answers
49 views
SeekBarPrefence not working in Android 2.10, bug?
I implemented settings using an XML:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<SeekBarPreference
...
0
votes
0answers
69 views
Android 2.1 sync adapter schedueling
I have implemented a sync adapter, and everything seems to work fine on 2.2+ devices.
However, 2.1 device don't seem to trigger the sync when I change the time manually (It does happen when I do so ...
0
votes
1answer
273 views
SimpleCursorAdapter error: column does not exist - only happens in Android 2.1
I have an activity that extends ExpandableListActivity. I have no issues when I run the application on Android 2.2+. However, when I run it on an Android 2.1 emulator, this activity force closes (the ...
1
vote
2answers
3k views
Swipe Gesture inside ListView - Android [closed]
I am a newbie for Android. I got a tutorial on how to implement the `listView here:
I implemented it and it is working fine. I need to implement a ViewSwitcher for the same. Like when I swipe the ...
0
votes
1answer
719 views
How onFling works in viewSwitcher
I have 2 layouts inside a viewSwitcher, I need to change when I swipe that.
package slide.trys.one;
import android.app.Activity;
import android.os.Bundle;
import android.view.GestureDetector;
import ...
2
votes
2answers
94 views
URI validation in JavaScript
What is a robust way (doesn't have to be regex, does it?) to validate that a URI works on Android by only using JavaScript?
That is, the check is not done in Java on the Android SDK side; it's done ...
0
votes
2answers
277 views
Android how can we design a menu for a list view similar to that of android 4.1 ICS?
I am new to Android and I am developing an app in android 2.1. The UI has a list view in it and on focusing the list shows a dropdown menu as in this image:
...
0
votes
0answers
72 views
Notification bar message isn't being refreshed
Hi,
The message that is being published on the notification is always the same as the first message I placed since starting the app.
Any idea why it won't refresh and show the new message?
Thanks ...
3
votes
1answer
262 views
Analogue of android:filterTouchesWhenObscured for API level below 9
Starting with API level 9, there's android:filterTouchesWhenObscured attribute and corresponding setFilterTouchesWhenObscured method on ViewGroup. For example, when a view has onClickListener set and ...
0
votes
0answers
318 views
How to play Audio Streaming in Android 2.1?
I'm facing problem when play live audio in Android 2.1 . it's not working in 2.1 but it's working in 2.2 and up so how i can do play audio in Android 2.1 ?
Activity class :
RadioService ...
2
votes
2answers
976 views
Frame by frame animation in splash screen - Android 2.1
I am writing a splash screen in android 2.1. I want 20 png images to be shown in an order at the splash screen. I tried to use animation-list but couldn't manage to do it.
Here is my code. Now, there ...
0
votes
0answers
176 views
Android 2.1 emulator does not give permisson to installed apk
I'm creating an app in Android 2.1 which opens ppt, pdf, doc like files from my app to corresponding app. The problem is, it works fine in Android 2.3.3 but in Android 2.1, I'm getting exception 'No ...
0
votes
1answer
297 views
Android multi touch not working
I've recently been trying to use multi touch for my app but haven't been able to find any help with my problem ill post the bit of my code im having trouble with.
im using and old adk with a api level ...
0
votes
1answer
1k views
Automatically answer call in android 2.1
I am looking for some code to automatically answer incoming call in android 2.1. I have looked on some of the available threads on stack-overflow but they do not seem to work for Android 2.1.
Can ...
0
votes
0answers
131 views
Gallery Displaying Force Close for more than 4 images
I have created one application in which i have used Gallery to display images taken from camera..but it displays Force Close error when i am taking more than 4 images..If i take 4 or less images then ...
0
votes
4answers
2k views
Android app doesn't run on my tablet
I just found the problem.
but i can't answer yet.
the app already runs in my tablet, but the connection to the database that is on my pc, didn't work.
I develop one app for android, on ...
3
votes
1answer
413 views
App Crash in Crop Activity in 2.1,2.2 etc but works in 1.6
Hi Friends,
I want to use the Crop Activity but it will Crash as
to activity {com.CropActivity/com.CropActivity.CropActivity}: android.content.ActivityNotFoundException:
Its Code is Properly ...
1
vote
1answer
633 views
Android: Custom View with object reference from attrs.xml, always null
I'm trying to setup a relationship hierarchy between objects. Every object has a parent of the same type as itself, or null.
I have a main.xml that contains some of these:
...
0
votes
2answers
540 views
Newbie: set content view which consists of two parts
I am developing an Android 2.1 app.
I have defined a LinearLayout class:
public class MyTopBar extends LinearLayout {
...
}
Then, I have a layout xml file (content.xml):
<LinearLayout>
...
1
vote
0answers
408 views
Can Robolectric assert that tabs load expected activities?
I've got an activity, that has 2 tabs, each pointing to an activity, so I have 3 in total.
LoggedInActivity > MyProfile OR MyBadges
public class LoggedIn extends TabActivity
{
@Override
protected ...
0
votes
0answers
343 views
Can you send a dummy SMS to your own android device?
My app has some features where it processes new messages in the SMS inbox.
Testing this is OK on the emulator, as I can send in a dummy SMS.
I'd like to create a button inside the app to "send self ...
3
votes
2answers
252 views
How do we copy files and retain their read only attribute in Android?
In my Android app, I would like to be able to copy a read only file and have the new version also read only.
Using the setReadOnly() method on the destination file only returns false, showing that it ...
0
votes
1answer
176 views
How can you assert that a given contentView is set using Robolectric?
Given the following sample onCreate()
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
Bundle extras = getIntent().getExtras();
if (extras ...
-1
votes
1answer
1k views
Getting “failed to find provider info for com.google.settings” in Android while trying to read JSON structure
I am getting the above error while trying to use MapView in Android to display points on a map using values obtained from reading a JSON structure. The map works perfectly and displays the test ...
0
votes
1answer
705 views
findViewById returns null for anything if mapview is included in parent layout
I've got a strange issue in that findViewById will return null for anything, if I use an include in my layout.
This is my onCreate(), the activity extends MapActivity
@Override
public void ...
0
votes
3answers
621 views
NullPointerException in onResume when modifying Buttons, why?
I'm getting a NullPointerException raised from a number of my users, and I'm unable to spot what the issue is, it is thrown on this line :
...
2
votes
1answer
622 views
Is BitmapFactory.decodeStream Thread safe? Sometimes my Async task finishes before it completes
I've got the following Async task, which should just load up an image from a given URL. The images do exist and I have access to them
private class FetchVehicleImage extends AsyncTask<String, ...
0
votes
2answers
356 views
Android 2.1 device to remote mysql database connection
I am developing an app that should connect to some server machine and access to a database on it. I have followed various tutorials online and now I am confused. Can someone please tell me what is the ...
0
votes
1answer
316 views
AdMob ad in onCreate OK, but disappears if you return to activity, why?
I've added an ad to my activity like follows :
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.languageselection);
...
0
votes
2answers
491 views
NullPointerException in onResume, related to AdMob but no idea why
I'm getting a nullpointer exception in the following code in my application :
@Override
protected void onResume() {
super.onResume(); //To change body of overridden methods use File | Settings ...
0
votes
1answer
87 views
Is there anyway to put a JOIN conditions using URIs using Android Programming?
I implemented a small application which will list all the SMS from INBOX and displays both the Contact number and Name.
I have to use two URIs, one is to get the SMS and the other is to get the ...
0
votes
1answer
294 views
Is AudioManager.OnAudioFocusChangeListener supported in Android version 2.1?
As per the title, is AudioManager.OnAudioFocusChangeListener supported in Android version 2.1?
0
votes
1answer
179 views
Cannot get my Android Phone (2.1) to be recongnized by Eclipse in MacOSX 10.6
I'm having trouble getting Eclipse as well as adb to recognize by device. I have followed the instructions here, with no luck. I have turned on USB Debugging and connected my phone via the USB cable ...
0
votes
1answer
355 views
Tab Key on Android Hard Keyboard
How can I disable a tab key on a form so that it goes to the next button when press.
This is a hardware Tab key on a qwerty hardware keyboard.
0
votes
1answer
323 views
Android 2.1 browser not loading css for mobile site
I have created a mobile site which uses django for the backend.
The content is very simple and I am loading a simple css file around 12kb and four javascript files (total size 120kb).
When I start ...
1
vote
0answers
271 views
Android 2.1 file i/o: pread fails with errno 22 (EINVAL, Invalid argument)
I'm doing simple file-copy operation using open(2), pread(2) and pwrite(2) as seen below (code simplified a bit). My problem is that the ::pread(2) functions fails returning -1, with [errno=22]. Note ...
1
vote
1answer
744 views
Android 2.1 - Rooted Revue GoogleTV - Flash Plugin Missing in Webview
I am developing and testing a Android 2.1 app on my rooted revue. It needs to render Flash web videos. The app works fine if the flash web videos are launched through an external chrome browser ...
2
votes
1answer
554 views
PhoneGap watch position not working with android
I'm trying to work out the watch position with android but its not working!!
<script type="text/javascript" charset="utf-8" src="phonegap.js"></script>
<script type="text/javascript" ...
0
votes
1answer
230 views
Is Robolectric able to assert that methods have been invoked?
I've got a button defined in my layout as follows :
<Button
android:id="@+id/speakButton"
android:layout_height="wrap_content"
...
1
vote
2answers
444 views
Should I be importing com.myapp.R into my activities?
IntelliJ is moaning if I don't have the following imports in my activities :
import com.jameselsey.apps.romandroid.R;
I've got several other apps which don't require an explicit import of the R ...

