| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.constraintlayout.motion.widget.MotionLayout 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/home_fragment"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- app:layoutDescription="@xml/home_motion_scene">
- <TextView
- android:id="@+id/home_fragment_time"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/_64sdp"
- android:text="@string/main_placeholder_clock"
- android:textAppearance="@style/TextAppearance.AppCompat"
- android:textSize="@dimen/_40ssp" />
- <TextView
- android:id="@+id/home_fragment_time_format"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="@style/TextAppearance.AppCompat"
- android:textSize="@dimen/_13sdp" />
- <TextView
- android:id="@+id/home_fragment_date"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="@dimen/_4sdp"
- android:text="@string/main_placeholder_date"
- android:textAppearance="@style/TextAppearance.AppCompat"
- android:textSize="@dimen/_12sdp" />
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/home_fragment_list"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
- tools:itemCount="4"
- tools:listitem="@layout/main_fragment_list_item" />
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/home_fragment_list_exp"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
- tools:itemCount="3"
- tools:listitem="@layout/main_fragment_list_item" />
- <TextView
- android:id="@+id/home_fragment_options"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="@dimen/_8sdp"
- android:text="@string/main_fragment_options"
- android:textAppearance="@style/TextAppearance.AppCompat"
- android:textSize="@dimen/_18ssp" />
- <TextView
- android:id="@+id/home_fragment_notes"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="8dp"
- android:text="@string/main_fragment_notes"
- android:textAppearance="@style/TextAppearance.AppCompat"
- android:textSize="@dimen/_18ssp" />
- <ImageView
- android:id="@+id/home_fragment_call"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="@dimen/_8sdp"
- app:srcCompat="@drawable/ic_call"
- tools:ignore="ContentDescription" />
- <ImageView
- android:id="@+id/home_fragment_camera"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="@dimen/_8sdp"
- app:srcCompat="@drawable/ic_photo_camera"
- tools:ignore="ContentDescription" />
- </androidx.constraintlayout.motion.widget.MotionLayout>
|