mirror of
https://gitea.winboll.cc/ZhanGSKen/MyWinBoLL.git
synced 2026-08-14 05:27:10 +08:00
22f9eff429
仿照MainActivity为布局草稿预览窗口添加工具栏: - 继承改为AppCompatActivity以支持Toolbar - 添加返回按钮和页面标题 - 点击返回按钮关闭页面
15 lines
500 B
XML
15 lines
500 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/activity_layoutdraft_preview_toolbar"/>
|
|
|
|
</LinearLayout>
|