Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
termux
GitHub Repository: termux/termux-app
Path: blob/master/termux-shared/src/main/res/layout/partial_primary_toolbar.xml
1782 views
1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
xmlns:app="http://schemas.android.com/apk/res-auto"
4
android:id="@+id/toolbar_container"
5
android:layout_width="match_parent"
6
android:layout_height="wrap_content"
7
android:orientation="vertical">
8
9
<androidx.appcompat.widget.Toolbar
10
android:id="@+id/toolbar"
11
android:layout_width="match_parent"
12
android:layout_height="?attr/actionBarSize"
13
android:background="?attr/colorPrimaryDark"
14
android:gravity="center_vertical"
15
android:minHeight="?attr/actionBarSize"
16
android:theme="@style/ThemeOverlay.AppCompat.DayNight.ActionBar"
17
app:popupTheme="@style/ThemeOverlay.AppCompat.DayNight"
18
app:titleTextAppearance="@style/TextAppearance.Widget.BaseToolbar.Title"
19
app:subtitleTextAppearance="@style/TextAppearance.Widget.BaseToolbar.Subtitle">
20
</androidx.appcompat.widget.Toolbar>
21
22
</LinearLayout>
23
24