aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/item_application.xml
diff options
context:
space:
mode:
authorYuutaW <17158086+Trumeet@users.noreply.github.com>2019-02-24 11:59:17 -0800
committerYuutaW <17158086+Trumeet@users.noreply.github.com>2019-02-24 11:59:17 -0800
commita08328403be84d85c006f801169a3feed0d956a4 (patch)
treeceebece6443a3e6662a4937b911c58904bb5b1ff /app/src/main/res/layout/item_application.xml
downloadWorkMode-a08328403be84d85c006f801169a3feed0d956a4.tar
WorkMode-a08328403be84d85c006f801169a3feed0d956a4.tar.gz
WorkMode-a08328403be84d85c006f801169a3feed0d956a4.tar.bz2
WorkMode-a08328403be84d85c006f801169a3feed0d956a4.zip
First Commit
Signed-off-by: YuutaW <17158086+Trumeet@users.noreply.github.com>
Diffstat (limited to 'app/src/main/res/layout/item_application.xml')
-rw-r--r--app/src/main/res/layout/item_application.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/app/src/main/res/layout/item_application.xml b/app/src/main/res/layout/item_application.xml
new file mode 100644
index 0000000..7ab17dc
--- /dev/null
+++ b/app/src/main/res/layout/item_application.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="utf-8"?>
+<androidx.constraintlayout.widget.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="56dp">
+ <ImageView
+ android:id="@android:id/icon"
+ android:layout_width="48dp"
+ android:layout_height="48dp"
+ app:layout_constraintTop_toTopOf="parent"
+ app:layout_constraintBottom_toBottomOf="parent"
+ android:layout_marginTop="8dp"
+ android:layout_marginBottom="8dp"
+ android:layout_marginStart="16dp"
+ app:layout_constraintStart_toStartOf="parent"
+ tools:src="@android:mipmap/sym_def_app_icon"/>
+
+ <TextView
+ android:id="@android:id/title"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ app:layout_constraintStart_toEndOf="@android:id/icon"
+ android:layout_marginStart="16dp"
+ app:layout_constraintTop_toTopOf="parent"
+ app:layout_constraintBottom_toBottomOf="parent"
+ android:textSize="16sp"
+ android:textAppearance="@style/TextAppearance.MaterialComponents.Subtitle2"
+ tools:text="App"/>
+</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file