diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2019-11-04 18:20:49 +0530 |
---|---|---|
committer | Harsh Shandilya <msfjarvis@gmail.com> | 2019-11-04 20:13:19 +0530 |
commit | a21353cb063902dff73d5a371f17978f177910f5 (patch) | |
tree | 33427b4912b51857487f310a462386a15dcc0ca0 /app/src/main/res | |
parent | 159e8967b637623af5eb73306fdafc99ef98d17e (diff) |
Add child count to folders
Fixes #559
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/password_row_layout.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/src/main/res/layout/password_row_layout.xml b/app/src/main/res/layout/password_row_layout.xml index 689898c2..e5e8e0b6 100644 --- a/app/src/main/res/layout/password_row_layout.xml +++ b/app/src/main/res/layout/password_row_layout.xml @@ -47,6 +47,17 @@ app:layout_constraintTop_toBottomOf="@id/type" tools:text="FILE_NAME" /> + <androidx.appcompat.widget.AppCompatTextView + android:id="@+id/child_count" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textSize="18sp" + app:layout_constraintTop_toTopOf="parent" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toStartOf="@id/folder_indicator" + android:layout_marginEnd="12dp" + tools:text="12" /> + <androidx.appcompat.widget.AppCompatImageView android:id="@+id/folder_indicator" android:layout_width="wrap_content" |