mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
96 lines
No EOL
4.1 KiB
XML
96 lines
No EOL
4.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".MainActivity">
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView4"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:contentDescription="@string/application_icon"
|
|
android:scaleType="center"
|
|
android:scaleX="1.5"
|
|
android:scaleY="1.5"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:srcCompat="@drawable/ic_baseline_settings_input_antenna_24" />
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="8dp"
|
|
android:gravity="center"
|
|
android:minHeight="?actionBarSize"
|
|
android:padding="16dp"
|
|
android:text="@string/app_name"
|
|
android:textAppearance="@style/TextAppearance.Widget.AppCompat.Toolbar.Title"
|
|
app:layout_constraintStart_toEndOf="@+id/imageView4"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<ImageView
|
|
android:id="@+id/connectStatusImage"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="16dp"
|
|
android:layout_weight="1"
|
|
android:contentDescription="@string/connection_status"
|
|
android:tint="#FFFFFF"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHeight_percent=".5"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:srcCompat="@drawable/cloud_off" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
android:id="@+id/tab_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<!-- Screen.messages -> MessagesContent()
|
|
Screen.settings -> SettingsContent()
|
|
Screen.users -> UsersContent()
|
|
Screen.channel -> ChannelContent(UIState.getChannel())
|
|
Screen.map -> MapContent()
|
|
|
|
<com.google.android.material.tabs.TabItem
|
|
android:icon="@drawable/ic_twotone_message_24"
|
|
android:text="Messages"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content" />
|
|
|
|
<com.google.android.material.tabs.TabItem
|
|
android:icon="@drawable/ic_twotone_settings_applications_24"
|
|
android:text="Settings"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content" />
|
|
-->
|
|
|
|
</com.google.android.material.tabs.TabLayout>
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
<androidx.viewpager2.widget.ViewPager2
|
|
android:id="@+id/pager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |