mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-02-01 11:42:18 +01:00
101 lines
3.8 KiB
XML
101 lines
3.8 KiB
XML
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<TextView
|
|
android:id="@+id/steps_date_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:textSize="20sp"
|
|
android:layout_marginTop="15dp"
|
|
android:layout_marginBottom="20dp"
|
|
/>
|
|
<ImageView
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:id="@+id/steps_streaks_button"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_marginTop="0dp"
|
|
android:layout_marginEnd="0dp"
|
|
android:visibility="visible"
|
|
app:srcCompat="@drawable/ic_events" />
|
|
</RelativeLayout>
|
|
|
|
<ImageView
|
|
android:layout_width="180dp"
|
|
android:layout_height="180dp"
|
|
android:layout_gravity="center"
|
|
android:layout_centerHorizontal="true"
|
|
android:scaleType="fitStart"
|
|
android:id="@+id/steps_gauge" />
|
|
|
|
<GridLayout
|
|
android:background="@color/gauge_line_color"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:columnCount="2"
|
|
android:layout_marginTop="15dp"
|
|
android:layout_marginBottom="15dp"
|
|
>
|
|
<LinearLayout
|
|
style="@style/GridTile"
|
|
android:layout_marginEnd="1dp"
|
|
android:layout_marginTop="2dp"
|
|
>
|
|
<TextView
|
|
android:id="@+id/steps_count"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="0"
|
|
android:textSize="20sp" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/steps"
|
|
android:textSize="12sp" />
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
style="@style/GridTile"
|
|
android:layout_marginStart="1dp"
|
|
android:layout_marginTop="2dp"
|
|
>
|
|
<TextView
|
|
android:id="@+id/steps_distance"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="0"
|
|
android:textSize="20sp" />
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/distance"
|
|
android:textSize="12sp" />
|
|
</LinearLayout>
|
|
</GridLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="250sp">
|
|
<com.github.mikephil.charting.charts.LineChart
|
|
android:id="@+id/steps_daily_chart"
|
|
android:layout_width="0dp"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="2" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
</ScrollView> |