Search code examples
androidandroid-image

Android fill color in transparent image


i am working on Image fill color . i have a Transparent image , i need to fill color in image according to percentage of level complete , i don't have idea how to do it , can any one suggest me.

thanks in advance


Solution

  • thanks for help i just did in simple way , i am adjusting hight in run time of first imageview .

        android:layout_width="300dp"
    
        android:layout_centerHorizontal="true"
         android:layout_height="300dp"
        >
    
      <ImageView
        android:id="@+id/view"
        android:layout_width="300dp"
        android:layout_centerHorizontal="true"
    
        android:layout_alignParentBottom="true"
        android:scaleType="fitXY"
        android:layout_height="150dp"
        />
     <ImageView
        android:id="@+id/imgVie"
        android:layout_width="300dp"
        android:layout_centerHorizontal="true"
        android:src="@drawable/masking"
        android:scaleType="fitXY"
        android:layout_height="300dp"
        />