图像背景要删除并设置为透明图像

时间:2018-07-20 05:04:49

标签: java android xml image

dbo.collection('customers').find({
  therapyConfirmation: true,
  therapyTimeZone: 'CST', 
  therapyDay: { $gt: 0 } 
}).toArray((error, result) => {
    if (error) {
      throw error;
    }
    let max = result.length;
    // some other code
});

Java :我为贴纸视图和图像视图都设置了透明背景,但是我在图库中得到了黑色背景图像,可以选择删除背景颜色并将图像设置为透明程序化的

     [It is a sticker app I want to remove image background white color, I need a transparent image][1]
      XML: Sticker view used for sticker adding in image view this sticker file going to save into phone gallery 
            <com.xiaopo.flying.sticker.StickerView
                android:id="@+id/sticker_view"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                app:showBorder="false"
                app:showIcons="false">
            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/cropped_image_view"
             />
 </com.xiaopo.flying.sticker.StickerView>

1 个答案:

答案 0 :(得分:0)

在您的XML文件中的StickerView属性内添加:

android:background =“#00FFFFFF”

基本上#FFFFFF是白色,可以是任何颜色,是#后面的两个0设置您的透明度。 #00表示0 Alpha,因此总透明度。

这也适用于按钮。