| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <?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:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:ignore="MotionLayoutInvalidSceneFileReference">
- <TextView
- android:id="@+id/home_fragment_time"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/_42sdp"
- android:text="@string/main_placeholder_clock"
- android:textAppearance="@style/TextAppearance.AppCompat"
- android:textSize="@dimen/_40ssp"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintHorizontal_bias="0.506"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent" />
- <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"
- app:layout_constraintEnd_toEndOf="@+id/home_fragment_time"
- app:layout_constraintStart_toStartOf="@+id/home_fragment_time"
- app:layout_constraintTop_toBottomOf="@+id/home_fragment_time" />
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/home_fragment_list"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/_16sdp"
- android:layout_marginLeft="@dimen/_16sdp"
- android:layout_marginTop="8dp"
- android:layout_marginEnd="@dimen/_16sdp"
- android:layout_marginRight="@dimen/_16sdp"
- android:layout_marginBottom="@dimen/_8sdp"
- app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintHorizontal_bias="0.0"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- app:layout_constraintVertical_bias="0.55"
- 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"
- android:layout_marginStart="@dimen/_16sdp"
- android:layout_marginLeft="@dimen/_16sdp"
- android:layout_marginTop="@dimen/_16sdp"
- android:layout_marginEnd="@dimen/_16sdp"
- android:layout_marginRight="@dimen/_16sdp"
- android:layout_marginBottom="@dimen/_8sdp"
- android:alpha="-2"
- app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintHorizontal_bias="0.5"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="parent"
- tools:itemCount="4"
- 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:alpha="-3"
- android:padding="@dimen/_8sdp"
- android:text="@string/main_fragment_options"
- android:textAppearance="@style/TextAppearance.AppCompat"
- android:textSize="@dimen/_18ssp"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintStart_toStartOf="@+id/home_fragment_list_exp"
- app:layout_constraintTop_toBottomOf="@+id/home_fragment_list_exp" />
- <TextView
- android:id="@+id/home_fragment_apps"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:alpha="-3"
- android:padding="@dimen/_8sdp"
- android:text="@string/main_fragment_apps"
- android:textAppearance="@style/TextAppearance.AppCompat"
- android:textSize="@dimen/_18ssp"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="@+id/home_fragment_list_exp"
- app:layout_constraintTop_toBottomOf="@+id/home_fragment_list_exp" />
- <ImageView
- android:id="@+id/home_fragment_call"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/_8sdp"
- android:layout_marginBottom="@dimen/_8sdp"
- android:padding="@dimen/_8sdp"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- 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:layout_marginEnd="@dimen/_8sdp"
- android:layout_marginBottom="@dimen/_8sdp"
- android:padding="@dimen/_8sdp"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:srcCompat="@drawable/ic_photo_camera"
- tools:ignore="ContentDescription" />
- </androidx.constraintlayout.motion.widget.MotionLayout>
|