0
votes
0answers
8 views
Android: How can we change the view in the tabs?
I want to provide a clickthrough on the list in a tab which opens another view.
I need to open the new view within the same tab. I then need to provide a back button on the changed layout to change …
0
votes
2answers
21 views
How to create Android Applications only for the Enterprise
Hi, I want to create an Android application that is not released to the Android Market for public consumption but only for private use of my company. Is this possible? If so can you post a link to …
0
votes
2answers
23 views
Android compass noise algorithm
I am trying to filter out the noise from the orientation/compass sensor in my magic phone.
Some of the readings seem to be 90-180 degrees off and there is a lot of jiggle. I have tried different …
0
votes
0answers
11 views
Android Borderless Dialog
I have created an AlertDialog using AlertDialog.Builder, but the Dialog border takes up too much space on the screen. How do I remove the border? I have tried using another Activity to emulate the …
0
votes
3answers
49 views
How do I copy an android app to an actual device?
I have written a simple android app and it runs in the emulator.
Now how do I actually copy it to my phone? I have HTC's Eris. When I attach it with USB it asks me If I want to mount it as a USB mass …
0
votes
1answer
26 views
android sdk version
How can i get the current android sdk version (1.5, 1.6, 2.0, etc.) programmatically
0
votes
1answer
22 views
Using MatrixCursor and SimpleCursorAdapter in a ListView with Text and Images
I'm new to Android development and running into an issue with using a MatrixCursor to populate my ListView.
private void fillData() {
String[] menuCols = new String[] { "icon", "item", "price" };
…
-1
votes
1answer
20 views
Android Custom Dialog Class Title Problems
public class MessageDisplayDialog extends Dialog implements OnClickListener
{
public MessageDisplayDialog(Context context, String title, String message)
{
super(context);
setTitle(title);
…
0
votes
1answer
21 views
how to block characters in edittext in android?
how to block characters in edittext in android?
0
votes
3answers
41 views
How to remove Duplicate value from arraylist in Android
Hi i have a ArrayList
ArrayList<String> values=new ArrayList<String>();
values.add("s");
values.add("n");
values.add("a");
values.add("s");
In this i want to remove repeated value
…
0
votes
2answers
23 views
How to create Yahoo Messenger Client in Android?
Hi
I am trying to create Yahoo messenger client in Android, and i got Openymsg api to implement that.This is small snippet of my code
Session session=new Session();
…
0
votes
1answer
8 views
ListView in a HorizontalScrollView in Android
I have an ListView inside a HorizontalScrollView and it works perfectly fine, except for the initial load. I'm loading the data for the list view from a web service so I created a thread to do that. …
0
votes
3answers
35 views
How to set a timer in android
Hi,
What is the proper way to set a timer in android in order to kick off a task (a function that I create which does not change the UI)?
Use this the Java way:
…
0
votes
1answer
11 views
Possible to write custom content provider for existing system database?
Hi folks,
Not sure of the absolute utility of this but seems as though it should be possible and useful. Can you extend ContentProvider to provide URIs representing new queries (i.e., joins across …
1
vote
1answer
22 views
Multiple screen support sanity check
Hi,
I have a project compiled with and targeting 1.5. I now want to support different screen sizes instead of letting android handle the scaling.
All I've done is modified my manifest to look like …
