How to Apply All Filter Effects to ImageViews
I have a three ImageViews. I need to apply any 10 filter Effects to my evech ImageViews, If i select Any image of three it must show Available Effects
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1.0"
android:orientation="vertical" >
<ImageView android:id="@+id/Image1" android:clickable="true" android:layout_weight="1.0"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:onClick="gallerychoice" />
<ImageView android:id="@+id/Image2" android:clickable="true" android:layout_weight="1.0"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:onClick="gallerychoice" />
<ImageView android:id="@+id/Image3" android:clickable="true" android:layout_weight="1.0"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:onClick="gallerychoice" />
</LinearLayout>