diff options
Diffstat (limited to 'app/src/main/res/layout/iitem_notification.xml')
-rw-r--r-- | app/src/main/res/layout/iitem_notification.xml | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/app/src/main/res/layout/iitem_notification.xml b/app/src/main/res/layout/iitem_notification.xml new file mode 100644 index 00000000..266b9dc4 --- /dev/null +++ b/app/src/main/res/layout/iitem_notification.xml @@ -0,0 +1,60 @@ +<?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" + android:id="@+id/item_frame" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:clickable="true" + android:focusable="true" + android:paddingBottom="@dimen/kau_activity_vertical_margin" + android:paddingStart="@dimen/kau_activity_horizontal_margin" + android:paddingTop="@dimen/kau_activity_vertical_margin"> + + <ImageView + android:id="@+id/item_avatar" + android:layout_width="@dimen/avatar_image_size" + android:layout_height="@dimen/avatar_image_size" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + + + <ImageView + android:id="@+id/item_thumbnail" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_marginEnd="@dimen/kau_padding_normal" + android:layout_marginStart="@dimen/kau_padding_normal" + android:scaleType="fitCenter" + android:visibility="gone" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintTop_toTopOf="parent" + app:layout_constraintWidth_default="percent" + app:layout_constraintWidth_max="120dp" + app:layout_constraintWidth_percent="0.3" /> + + <TextView + android:id="@+id/item_content" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_marginEnd="@dimen/kau_padding_normal" + android:layout_marginStart="@dimen/kau_padding_normal" + app:layout_constraintEnd_toStartOf="@id/item_thumbnail" + app:layout_constraintStart_toEndOf="@id/item_avatar" + app:layout_constraintTop_toTopOf="parent" /> + + <TextView + android:id="@+id/item_date" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_marginEnd="@dimen/kau_padding_normal" + android:layout_marginStart="@dimen/kau_padding_normal" + android:textSize="12sp" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toStartOf="@id/item_thumbnail" + app:layout_constraintStart_toEndOf="@id/item_avatar" + app:layout_constraintTop_toBottomOf="@id/item_content" + app:layout_constraintVertical_bias="1.0" /> + + +</android.support.constraint.ConstraintLayout>
\ No newline at end of file |