我有一个带有一些透明区域(如渐变透明)的 png 图像,我想将此图像“添加”到位图上并从这两个区域创建一个新位图。
这在Android中可能吗?
我有一个带有一些透明区域(如渐变透明)的 png 图像,我想将此图像“添加”到位图上并从这两个区域创建一个新位图。
这在Android中可能吗?
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="sliding banner here" />
<ImageView
android:id="@+id/slider_des"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center"
android:layout_marginTop="40dp"
android:hint="text"
android:paddingBottom="20dp"
/>
</FrameLayout>
可以修改上面的代码来实现你想要的!第一个图像视图将用于您的位图,第二个用于重叠图像视图,您可以将透明 png 放入其中。