| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?xml version="1.0" encoding="utf-8"?>
- <merge 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"
- tools:showIn="@layout/home_fragment_default">
- <EditText
- android:id="@+id/app_drawer_edit_text"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginStart="8dp"
- android:layout_marginLeft="8dp"
- android:layout_marginTop="32dp"
- android:layout_marginEnd="8dp"
- android:layout_marginRight="8dp"
- android:ems="10"
- android:hint="@string/add_apps_fragment_search_apps"
- android:imeOptions="actionDone"
- android:inputType="none|textNoSuggestions|textCapWords"
- android:textSize="@dimen/_18ssp"
- tools:ignore="Autofill,LabelFor" />
- <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" />
- <ImageView
- android:id="@+id/home_fragment_options"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="@dimen/_8sdp"
- app:srcCompat="@drawable/ic_cog"
- tools:ignore="ContentDescription" />
- <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_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="3"
- 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" />
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/app_drawer_fragment_list"
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:layout_marginStart="8dp"
- android:layout_marginLeft="8dp"
- android:layout_marginEnd="8dp"
- android:layout_marginRight="8dp"
- app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
- tools:listitem="@layout/add_app_fragment_list_item" />
- </merge>
|