用于视频录制的Android圆形表面视图

时间:2014-05-13 15:01:22

标签: android surfaceview geometry rounding

是否有可能有圆形表面视图而不是矩形视图?如果输出是640x480则不是问题。

提前致谢。

2 个答案:

答案 0 :(得分:2)

将SurfaceView放入FrameLayout,然后在其上放置另一个View,使用PNG蒙版或xml可绘制的形状。

答案 1 :(得分:0)

只需在 Cardview 中添加表面视图并添加以下参数:

app:cardCornerRadius="@dimen/_200sdp"
app:cardPreventCornerOverlap="false"


<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 
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="com.daasuu.sample.SquareActivity">

<androidx.cardview.widget.CardView
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:layout_margin="@dimen/_12sdp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintDimensionRatio="1:1"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:cardCornerRadius="@dimen/_200sdp"
    app:cardPreventCornerOverlap="false">

    <!--Add here surfaceview or textureview -->

</androidx.cardview.widget.CardView>
  


</androidx.constraintlayout.widget.ConstraintLayout>