session-android/app/src/main/res/layout/view_profile_picture.xml

39 lines
1.7 KiB
XML
Raw Normal View History

2019-12-17 16:24:42 +01:00
<?xml version="1.0" encoding="utf-8"?>
2023-06-30 03:31:57 +02:00
<merge xmlns:android="http://schemas.android.com/apk/res/android">
2019-12-17 16:24:42 +01:00
<RelativeLayout
android:id="@+id/doubleModeImageViewContainer"
android:layout_width="@dimen/medium_profile_picture_size"
android:layout_height="@dimen/medium_profile_picture_size">
2021-05-28 08:09:15 +02:00
<ImageView
android:id="@+id/doubleModeImageView1"
2019-12-17 16:24:42 +01:00
android:layout_width="@dimen/small_profile_picture_size"
android:layout_height="@dimen/small_profile_picture_size"
android:layout_alignParentLeft="true"
2021-05-28 08:09:15 +02:00
android:layout_alignParentTop="true"
android:background="@drawable/profile_picture_view_small_background" />
2020-09-09 05:57:22 +02:00
2021-05-28 08:09:15 +02:00
<ImageView
android:id="@+id/doubleModeImageView2"
2019-12-17 16:24:42 +01:00
android:layout_width="@dimen/small_profile_picture_size"
android:layout_height="@dimen/small_profile_picture_size"
android:layout_alignParentRight="true"
2021-05-28 08:09:15 +02:00
android:layout_alignParentBottom="true"
android:background="@drawable/profile_picture_view_small_background" />
2020-09-09 05:57:22 +02:00
2020-01-06 00:18:43 +01:00
</RelativeLayout>
2019-12-17 16:24:42 +01:00
2020-01-23 00:25:22 +01:00
<ImageView
2021-05-28 08:09:15 +02:00
android:id="@+id/singleModeImageView"
2019-12-17 16:24:42 +01:00
android:layout_width="@dimen/medium_profile_picture_size"
android:layout_height="@dimen/medium_profile_picture_size"
2021-05-28 08:09:15 +02:00
android:background="@drawable/profile_picture_view_medium_background" />
2019-12-17 16:24:42 +01:00
2021-05-28 08:09:15 +02:00
<ImageView
android:id="@+id/largeSingleModeImageView"
2020-01-06 04:26:52 +01:00
android:layout_width="@dimen/large_profile_picture_size"
2021-05-28 08:09:15 +02:00
android:layout_height="@dimen/large_profile_picture_size"
android:background="@drawable/profile_picture_view_large_background" />
2020-01-06 04:26:52 +01:00
2023-06-30 03:31:57 +02:00
</merge>