DroidFS/app/src/main/res/layout/explorer_info_bar.xml

28 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="25dp"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/infoBarBackgroundColor"
android:gravity="center_vertical">
<TextView
android:id="@+id/current_path_text"
android:layout_width="0dp"
android:layout_height="wrap_content"
style="@style/infoBarTextView"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toStartOf="@id/total_size_text"/>
<TextView
android:id="@+id/total_size_text"
android:layout_width="0dp"
android:layout_height="wrap_content"
style="@style/infoBarTextView"
android:text="@string/default_total_size"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/current_path_text"/>
</androidx.constraintlayout.widget.ConstraintLayout>