摄影软件app的界面代码
时间: 2023-11-27 21:53:25 浏览: 70
摄影软件的界面设计可以因应不同的功能和需求而不同,这里提供一个简单的示例代码,供参考:
```xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!--顶部工具栏-->
<LinearLayout
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:orientation="horizontal"
android:padding="16dp">
<ImageView
android:id="@+id/btn_back"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_back" />
<TextView
android:id="@+id/tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="My Camera App"
android:textColor="@color/white"
android:textSize="20sp" />
<ImageView
android:id="@+id/btn_settings"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:src="@drawable/ic_settings" />
</LinearLayout>
<!--相机预览-->
<SurfaceView
android:id="@+id/surface_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/toolbar"
android:layout_marginTop="16dp" />
<!--底部操作栏-->
<LinearLayout
android:id="@+id/bottom_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="#80000000"
android:orientation="horizontal"
android:padding="16dp">
<ImageView
android:id="@+id/btn_flash"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="@drawable/ic_flash_off" />
<ImageView
android:id="@+id/btn_capture"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_gravity="center"
android:background="@drawable/btn_capture_bg"
android:src="@drawable/ic_capture" />
<ImageView
android:id="@+id/btn_switch_camera"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="@drawable/ic_switch_camera" />
</LinearLayout>
</RelativeLayout>
```
这个代码实现了一个带有顶部工具栏、相机预览和底部操作栏的界面,其中包括了一些常见的控件,如 ImageView、TextView、SurfaceView 等,也可以根据需求进行修改。
阅读全文