需要更好的方法将滤镜效果应用于ImageViews

时间:2013-10-30 12:02:36

标签: android android-layout image-processing android-imageview imagefilter

我有三个ImageViews。我需要对我的每个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>

0 个答案:

没有答案