我有一个带有透明区域的png图像(如渐变透明),我想将这个图像“添加”到位图上并从这两个图像创建一个新的位图。
这在Android中可行吗?
答案 0 :(得分:0)
<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>
上面的代码可以修改,以达到你想要的!第一个imageview将用于您的位图,第二个用于重叠图像视图,您可以放置透明png。