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

Apps Changing src image of a widget

kujaff

Lurker
Hi :p

I want to change the src of the image of my widget, wich have this layout :
PHP:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android"
               android:layout_width="fill_parent" 
               android:layout_height="fill_parent" 
               android:orientation="vertical" >
    <ImageView  android:id="@+id/wifi_widget_icon"
               android:scaleType="center"
        android:layout_width="fill_parent"
             android:layout_height="fill_parent"
               android:src="@drawable/wifi_enabled" />
</LinearLayout>
How can i do this please :confused:

Thanks
 
Back
Top Bottom