如何在 Android 应用中实现 SurfaceView 透明化?


本例演示如何在 Android 应用程序中实现 SurfaceView 透明化。

步骤 1 − 在 Android Studio 中新建一个项目,转至文件 ⇒ 新建项目并填写所有必需信息以新建一个项目。

步骤 2 − 将以下代码添加到 res/layout/activity_main.xml。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:app="http://schemas.android.com/apk/res-auto"
   xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   tools:context=".MainActivity">
   <SurfaceView
      android:id="@+id/cameraSurface"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content" />
   <ImageView
      android:id="@+id/IV_MASK"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:src="@drawable/mask"
      android:background="@android:color/transparent"/>
</RelativeLayout>

步骤 3 − 将以下代码添加到 src/MainActivity.java

package com.app.sample;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
   }
}

步骤 4 − 将以下代码添加到 Manifests/AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.app.sample">
   <application
      android:allowBackup="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:supportsRtl="true"
      android:theme="@style/AppTheme">
      <activity android:name=".MainActivity">
         <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
         </intent-filter>
      </activity>
   </application>
</manifest>

我们尝试运行你的应用程序。我假设你已经将一台真正的安卓手机设备与你的电脑相连接了。要从安卓工作室运行该应用,请打开项目其中一个 activity 文件并点击工具栏上的运行  图标。选择你的移动设备作为选项,然后查看你的移动设备,其上将会显示默认屏幕 −

点击 此处 下载项目代码。

更新于: 2019-11-15

798 查看次数

开启你的 职业生涯

完成课程可获得认证

开始
广告