我已经为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>
非常感谢您的帮助。
答案 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>