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

28 lines
1.1 KiB
XML
Raw Normal View History

2020-07-17 16:35:39 +02:00
<?xml version="1.0" encoding="utf-8"?>
2021-03-09 19:10:15 +01:00
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
2020-07-17 16:35:39 +02:00
android:layout_width="match_parent"
android:layout_height="25dp"
2021-03-09 19:10:15 +01:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2021-11-09 11:12:09 +01:00
android:background="?attr/infoBarBackgroundColor"
2020-07-17 16:35:39 +02:00
android:gravity="center_vertical">
<TextView
android:id="@+id/current_path_text"
2021-03-09 19:10:15 +01:00
android:layout_width="0dp"
2020-07-17 16:35:39 +02:00
android:layout_height="wrap_content"
2021-03-09 19:10:15 +01:00
style="@style/infoBarTextView"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toStartOf="@id/total_size_text"/>
2020-07-17 16:35:39 +02:00
<TextView
android:id="@+id/total_size_text"
2021-03-09 19:10:15 +01:00
android:layout_width="0dp"
2020-07-17 16:35:39 +02:00
android:layout_height="wrap_content"
2021-03-09 19:10:15 +01:00
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"/>
2020-07-17 16:35:39 +02:00
2021-03-09 19:10:15 +01:00
</androidx.constraintlayout.widget.ConstraintLayout>