0
votes
0answers
30 views

Android - Help me with collision detect(with Paint Example xD)

I have problems with the collision detect, or rather, I can check whether the collision occurs, but can not prevent the images overlap. Because of my English maybe I can not explain well my problem, ...
0
votes
0answers
17 views

Android drag as possible, only away from the collision

hi all as the title I wanted to know how to make sure that once the collision occurred, the drag and drop function is applicable only in the opposite direction to the collision, to avoid that the two ...
0
votes
1answer
114 views

How do I program android to look for a particular network? (Issues Following Simple Tutorial)

I'm attempting to use the following example: How do I program android to look for a particular network? But I'm unable to execute it due to issues stemming from the line: WifiManager wifiManager = ...
0
votes
0answers
42 views

What is happening in LocationResult?

I've been searching around on how to implement a way to get a user's location in Android and I came across this SO question: What is the simplest and most robust way to get the user's current ...
2
votes
1answer
264 views

Error compile in “Use Facebook Login” SDK

I have followed the Facebook "use Facebook Login" tutorial However, when I load the app and click on "Login" I get the "com.facebook.FacebookException: Cannot use SessionLoginBehavior ...
0
votes
0answers
178 views

SimpleCursorTreeAdapter and CursorLoader for ExpandableListView with my layouts

I am trying to create SimpleCursorTreeAdapter and CursorLoader for ExpandableListView with my layouts. Here is my Fragment class which implements the CursorLoader public class ContactFragmentNew ...
1
vote
2answers
410 views

find example of mapsforge for android

I've read in mapsforge wiki that it have an example page '/trunk/Applications/Android/Samples'. It seem died now. Where can I get it?
1
vote
2answers
384 views

AutoCompleteTextView behaves differently in different versions of android

I am not clear whether this is an issue with different versions of Android, or different screen sizes, but I am getting some unpredictable behavior. I am testing the UI of the dropdown of a ...
0
votes
1answer
74 views

FragmentActivity generated integer resources are large integers

I have used a constant private int SOME_GEN_ID = 1; startActivityForResult(intent , SOME_GEN_ID); instead of using a integer defined in /res/values/integers.xml as an argument to ...
0
votes
1answer
153 views

can we use java socketchannel to communicate with c based TCP server

can we use socketchannel to communicate with c++ based TCP server
0
votes
1answer
228 views

Error-free AndEngine examples crashing

I am getting started with AndEngine, and I'd like to use some of the AndEngineExamples included on GitHub as a basis to work from. Now, I've downloaded everything on GitHub and Eclipse gives no errors ...
0
votes
1answer
39 views

Is it possible attach a widget to the Android background?

I was wondering if is it possible attach a widget to the main Android background/wallpaper/desktop? I want develop something like a clock, actually It's a very simple widget that have three buttons. ...
0
votes
0answers
67 views

Need help on OpenID implementation for Android app [closed]

I am developing an Android app in which I would like users to login through their Gmail, FB, Yahoo etc. accounts. I believe OpenID is the solution. Is there any demo app that implements this? Or any ...
1
vote
0answers
120 views

Need an example for android bluetooth phone to phone [closed]

I am developing an app for Android, but I am relatively new to that. Now I want to send a single number from one device to another (both the same version, if that helps). I already found some help ...
0
votes
1answer
243 views

How to use Crystalize or Pointilize filter of jhlabs image library in Android?

Can you reply example of Crystalize or Pointilize filter of jhlabs image library in Android? I did write code as my style, but it didn't work. :P Following code is that I've written. it doesn't work. ...
3
votes
0answers
2k views

AutoCompleteTextView backed by CursorLoader

So I am having trouble extending the MultiAutoCompleteTextView and backing it with a CursorLoader, while simultaneously using a custom Tokenizer. The issue rises specifically with the ...
0
votes
0answers
90 views

How can I create a basic Fragments project? [closed]

I'm trying to understand Fragments but I can't find a tutorial simple enough. All I want to do is create 2 panels on my tablet, one smaller on the left and a larger one on the right. Imagine a ...
3
votes
4answers
2k views

Programmatically center TextView text

I beg some leniency here, I'm just starting with the Android SDK tutorials and I'm attempting something out of interest that's not in the tutorial itself, but I would hope would be easy. I am trying ...
9
votes
2answers
15k views

Android Bluetooth Example

Can anybody give me android bluetooth communication tutorial link or hint? Plz dont tell me to refer BluetoothChat example I can only understand how to discover and connect to devices but dont know ...
0
votes
1answer
183 views

Init text to speech in all activities?

Let us say the android app have more than one activity and services. Each of them uses Text to speech. I understand all these activities and services run in the same process unless we explicitly ...
1
vote
0answers
89 views

AccelerometerPlayActivity source transform

Plz Answer to me. I'd like to transform this activity. Que 1. one Ball Image -> variety of Ball Image Que 2. Rect Collision -> Round Collision public void resolveCollisionWithBounds() { ...
1
vote
1answer
2k views

Android background services example with interactive invoking for methods

I am not expert in android and I am looking for an example for an Android application which use a service in which there are real functional methods or in other words what a service could be useful ...
0
votes
0answers
163 views

Android communication between two services example

I have two services started by the same Activity. My problem is that I can comunicate between activity and each service, but the purpose of my application is to comunicate directly between the two ...
-2
votes
1answer
194 views

SalesForce with Android

I am new to sales Force I want consume the sales Force with Android. I have account in SalesForce Free trail account how can I connect through Android program. Please send me any samples or material ...
0
votes
3answers
2k views

Parse application/smil MMS MIME type on android

So I have come across three categories of MMS message types: Plain Text - "text/plain" Image - "image/jpeg", "image/bmp", "image/gif", "image/jpg", "image/png" SMIL (Synchronized Multimedia ...
0
votes
1answer
333 views

How to find and use the Android sdk console, find code sample, understand XML, using snapshot [closed]

As in subject. I saw many tips with using code in console but no is available in sdk manager etc. I use Windows XP, so no bash is available, and windows command does not even know the telnet command. ...
0
votes
0answers
1k views

Android Login Example [closed]

I am new to Android, I want to create sample application in which when user open my application first user has to login into my application in mysql which on server. After successful login I want to ...
0
votes
2answers
511 views

examples of implementation of NAT traversal techniques in (android ?) p2p applications

I am currently working on an Android peer-to-peer application. Of course, we soon realized that one of the most difficult tasks is to figure out how to traverse NATs to allow 2 devices (or more) to ...
0
votes
2answers
277 views

Bluetooth chat sample looks messy on ICS

I am new to android programming. I have already coded an GUI für my app and want to complete it with bluetooth functionality. I used the bluetooth chat example from 2.1 and it really looks messy in ...
0
votes
2answers
141 views

Getting values from accelerometer class to main activity class

I'm trying to make an Android App that reads accelerometer values and sends them to the server. I have two classes in two files - the Main class with httpget method and the accelerometer class. I ...
18
votes
2answers
3k views

Contact Bubble EditText

I am trying to create contact bubbles in the MultiAutoCompleteTextView similiar to how it is implemented in the Google+ app. Below is a screen shot: . I have tried to extend the ...
8
votes
3answers
5k views

SimpleCursorTreeAdapter and CursorLoader for ExpandableListView

I am trying to asynchronously query a provider by using a CursorLoader with a SimpleCursorTreeAdapter Here is my Fragment class which implements the CursorLoader public class ...
1
vote
2answers
2k views

Android - Barcode scanner

I need to create an app that one of the feature will have an barcode scanner. I was searching for some code examples to make an barcode scanner but i haven't found any full example code. Only thing ...
0
votes
3answers
1k views

Android: Own Font in ListView

I'm trying to have my own font in a listview using Java in Android OS 2.3.x After reading the following links, i'm stuck: http://developer.android.com/guide/topics/ui/themes.html ...
3
votes
1answer
889 views

vertical carousel renderscript

I need some help with the CarouselExample that can be checked out using this link. I want to make it spin vertically. I found a method in the .rs file called getMatrixForCard where the transformations ...
0
votes
3answers
1k views

Android gridview example

i have been trying to apply the Gridview Tutorial but i'm stuck in an error, i know it will be easy but i can not get it though, i'm still so beginner, anyway here is the error : ...
0
votes
2answers
6k views

Creating a chronometer in Android

I'd like to know how can I implement in Android a simple chronometer with a start and stop button that displays data in the HH:MM:SS:MsMs format... I've been searching and searching and I have found ...
0
votes
1answer
1k views

Android SDK FingerPaint example

I hava a simple question about Android FingerPaint example: here (Websited is updated, my question is regarding old version as explained below) On of the first things it does is setContentView(new ...
39
votes
2answers
16k views

android: What is the purpose of Looper and how to use it?

I am new to Android. I want to know what the Looper class does and also how to use it. I have read the Android Looper class documentation but I am unable to completely understand. I have seen it in a ...
1
vote
1answer
145 views

Android: Getting started with the camera and picture uploading / networking

I am looking for a fast way to get started with an application that can access the camera, quickly take a snapshot and upload it to an internet site. Since I am looking for RIA Development, I guess I ...
1
vote
2answers
4k views

Android Foreground Service Help

I'm working on an application that requires I run a long process in the foreground (mostly downloading a few large files), however, after much searching, and googling I have been unable to turn up a ...
2
votes
2answers
1k views

Camera example bug when locking/unlocking device

I'm working with the camera and I'm using the exact same example given in the documentation : ...
1
vote
0answers
1k views

Info Window for Google Maps

I'm searching for a easy way to create Info-Windows for Google-Maps in Android. For example: a function with longitude, latitude and text parrameters. These were show onclick a location on the map. ...
0
votes
1answer
2k views

Android InApp Purchase Example

I am facing the issue in building InApp Purchase Example App give in SDK. It's showing error in IMarketBillingService.aidl because its showing like disabled file. and the other java files importing ...
0
votes
0answers
371 views

query “one-to-many” example android

Doing a task I faced with a problem connected with "one-to-many" query to the sqlite. The situation is described below. I have two tables in my database. In the first table - the brand of cars and in ...
-1
votes
3answers
499 views

how to put the seletected contacts into an array in android [closed]

all I am displaying all my phone-book contacts into my application with check-boxes ... Now I want to get the details like name mobileno and email of the selected contact list ... Please can ...
0
votes
2answers
2k views

android with css

Can anyone give me a good reference for android application with CSS? thanks in advance
4
votes
2answers
2k views

How to easily Generate Synth Chords Sounds in Android?

How to easily Generate Synth Chords Sounds in Android? I wanna be able to generate dynamically an in game Music using 8bit. Tried with AudioTrack, but did not get good results of nice sounds yet. Any ...
1
vote
4answers
4k views

Android work multitouch button

Hi i want to create 2 Button and i want to multitouch ?? i tryed to do but no example in internet.. So if you got one can you share or can you give me opinion ?? my code is this but not support ...
3
votes
1answer
14k views

Android JSoup Example

I was just wondering has anyone got a sample eclipse project with a working implementation of JSoup? Im trying to use it to pull information from websites and have gone all over google trying to get ...

1 2