在Android上构建圆框相机

时间:2018-10-29 05:23:04

标签: android android-layout android-fragments android-camera android-camera2

我已经为Android开发了一个摄像头应用程序,我面临的问题是使摄像头框架变为圆形而不是正方形或全屏。我试图使布局将其形状更改为圆形,但是没有用。 布局是->

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_height="match_parent" android:layout_width="match_parent"
                android:orientation="vertical"
    android:gravity="center"
    android:background="#541358">
    <FrameLayout android:layout_width="350dp"
                 android:layout_height="350dp"
        android:layout_gravity="center"
        android:background="@drawable/backshape"
                 android:id="@+id/container">
    </FrameLayout>
</LinearLayout>

And this is the layout design And this is how the camera looks like in actual(Notice the camera is still square, But I need it circular)

非常感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

您的框架布局可以是这样

        <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <SurfaceView
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
        <View
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@drawable/backShape"></View>
    </FrameLayout>