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

Search results

  1. K

    Apps Catch wifi state evolution

    Hi :D I want to catch intents who are sent when wifi state is changed. By i don't receive anything :( <receiver android:name=".wifi.WifiReceiver"> <intent-filter> <action android:name="android.net.wifi.STATE_CHANGE"/> </intent-filter> </receiver>...
  2. K

    Apps How to pass extras informations with setOnClickPendingIntent ?

    Hi I have a widget, with a provider : public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) { final int N = appWidgetIds.length; for (int i=0; i<N; i++) { int appWidgetId = appWidgetIds[i]; Intent intent = new...
  3. K

    Apps Changing src image of a widget

    Hi :p I want to change the src of the image of my widget, wich have this layout : <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent"...