我有三个 ImageView。我需要对我的每个 ImageViews 应用任何 10 个滤镜效果,如果我选择三个中的任何图像,它必须显示可用效果
这是示例 XML,
<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>