mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 02:21:14 +01:00
76 lines
2.8 KiB
XML
76 lines
2.8 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:id="@+id/activity_battery_info_layout"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:scrollbars="vertical">
|
||
|
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/activity_battery_info_master_layout"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginStart="0dp"
|
||
|
android:layout_marginEnd="0dp"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_marginStart="14dp"
|
||
|
android:layout_marginEnd="14dp"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/battery_status_device_icon"
|
||
|
android:layout_width="80dp"
|
||
|
android:layout_height="80dp"
|
||
|
app:srcCompat="@drawable/ic_devices_other"
|
||
|
android:contentDescription="TODO" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/activity_battery_info_top_layout"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginStart="5dp"
|
||
|
android:layout_marginEnd="5dp"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/battery_status_device_name_text"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:textSize="24sp"
|
||
|
tools:text="Device name" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/battery_status_battery_level_text"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:textAlignment="textEnd"
|
||
|
android:textSize="48sp"
|
||
|
tools:text="90%" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/activity_battery_info_bottom_layout"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<FrameLayout
|
||
|
android:id="@+id/batteryChartFragmentHolder"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="400dp"/>
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|
||
|
</ScrollView>
|