2017-02-14 09:07:00 +11:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<android.support.constraint.ConstraintLayout
|
|
|
|
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">
|
|
|
|
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
2017-03-13 11:10:29 +01:00
|
|
|
android:layout_width="match_parent"
|
2017-02-14 09:07:00 +11:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:theme="?attr/actionBarTheme"
|
|
|
|
app:popupTheme="?attr/actionBarPopupTheme" />
|
|
|
|
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/app_list"
|
2017-03-13 11:10:29 +01:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
2017-02-14 09:07:00 +11:00
|
|
|
tools:listitem="@layout/installed_app_list_item"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/toolbar"
|
|
|
|
android:scrollbars="vertical" />
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Commented out until the long press functionality is implemented.
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/helpText"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:textAlignment="center"
|
|
|
|
android:textColor="#424242"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:text="Tap and hold on an app for more options"
|
|
|
|
app:layout_constraintHorizontal_bias="0.0"
|
|
|
|
android:layout_marginBottom="-1dp" />-->
|
|
|
|
|
|
|
|
</android.support.constraint.ConstraintLayout>
|