• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. M

    Apps Broadcast Intent when Accesspoint is available

    Hello, is there any Broadcast Intent to use which is starting when an AccesPoint is available? e.g.: At home I have a AccesPoint with name xyz, so when I come home my registert BroatcastReceiver starts and do some stuff (But without connecting to the w-lan). Anybody an idea?? br Markus
  2. M

    Apps startService with objectdata as parameter

    Hello, I wanna start a Service and need some Objects in my Service to work with them. I would like to have an custom constructor like this: public MyService(Context context, Button button, Cursor cursor) But the common way to start a Service is like that: intent.setClass(this...
  3. M

    ROMs Custom ROM Build to unstable and without NFC Settings

    Hello, I built a ROM from Branch gingerbread and one from master. In both cases the NFC setting in "Settings > Network & Wirless > NFC" doesnt Exists. Then I used to activate WLAN and the system hangs up. Anyone has an idea why the setting is not exist? Maybe I should get the source from a TAG...
  4. M

    Apps Change Styles onPressed

    Hello, I have a Area with some elements: ImageView and TextView These elements are in an RelativLayout. The RelativeLayout has an onClick Listener. Now, I want to change all Colors on the regarding elements. Background of RelativLayout, src of ImageView, textColor of TextView and so on Is it...
  5. M

    Change Textcolor on Button pressed

    Hello I have a Button with a shape as drawable. I would like change the textcolor of the button, on state_pressed. How is it possible? greets Markus
  6. M

    Apps Cursor for ListView has more than 1 MB

    Hello, I have a ListView with a CursorAdapter. There are 100 Entries with a Picture (base64) in TEXT Column. When I startb the ListView then I get after 15 Entries an error: 01-12 12:36:30.387: ERROR/CursorWindow(7233): need to grow: mSize = 1048576, size = 54725, freeSpace() = 16570, numRows...
  7. M

    Apps no internet allthough I have permission.INTERNET

    Hello friends, I wanna go to the world wide web through my android application. If I build an MapActivity I get just a gray grid instead of a map. If I do an HTTPConnection I get an Exception: Permission denied (maybe missing INTERNET permission) In my Manifest file the permission is...
  8. M

    Apps onClick in TextView doesnt work

    Hello, I want a Menu with Textview to click it and react. There is my TextView: <TextView android:layout_width="fill_parent" android:layout_height="40px" android:text="MyLink" android:onClick="onClickMyLink"...
  9. M

    Apps Develope App for what android version?

    Hello, if I develope an App which has not specific functions to need a new version like 2.1, then I think its better to develope for a version like 1.6. So more people with older android phones can run the App too. My question: is a App which is developed for Version 1.6 runable on ALL other...