2019-12-17 15:24:42 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-09-03 12:15:03 +00:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-12-17 15:24:42 +00:00
|
|
|
android:layout_width="wrap_content"
|
2020-09-03 12:15:03 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2019-12-17 15:24:42 +00:00
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/doubleModeImageViewContainer"
|
|
|
|
android:layout_width="@dimen/medium_profile_picture_size"
|
|
|
|
android:layout_height="@dimen/medium_profile_picture_size">
|
|
|
|
|
2020-01-05 23:18:43 +00:00
|
|
|
<RelativeLayout
|
2019-12-17 15:24:42 +00:00
|
|
|
android:layout_width="@dimen/small_profile_picture_size"
|
|
|
|
android:layout_height="@dimen/small_profile_picture_size"
|
|
|
|
android:layout_alignParentLeft="true"
|
2020-01-05 23:18:43 +00:00
|
|
|
android:layout_alignParentTop="true">
|
2019-12-17 15:24:42 +00:00
|
|
|
|
2020-01-05 23:18:43 +00:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/doubleModeImageView1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-09-03 12:15:03 +00:00
|
|
|
android:alpha="0.65"
|
2020-01-05 23:18:43 +00:00
|
|
|
android:background="@drawable/profile_picture_view_small_background" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<RelativeLayout
|
2019-12-17 15:24:42 +00:00
|
|
|
android:layout_width="@dimen/small_profile_picture_size"
|
|
|
|
android:layout_height="@dimen/small_profile_picture_size"
|
|
|
|
android:layout_alignParentRight="true"
|
2020-01-05 23:18:43 +00:00
|
|
|
android:layout_alignParentBottom="true">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/doubleModeImageView2"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@drawable/profile_picture_view_small_background" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
2019-12-17 15:24:42 +00:00
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2020-01-05 23:18:43 +00:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/singleModeImageViewContainer"
|
2019-12-17 15:24:42 +00:00
|
|
|
android:layout_width="@dimen/medium_profile_picture_size"
|
2020-01-05 23:18:43 +00:00
|
|
|
android:layout_height="@dimen/medium_profile_picture_size">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/singleModeImageView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@drawable/profile_picture_view_medium_background" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
2019-12-17 15:24:42 +00:00
|
|
|
|
2020-01-22 23:25:22 +00:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/rssImageView"
|
2019-12-17 15:24:42 +00:00
|
|
|
android:layout_width="@dimen/medium_profile_picture_size"
|
|
|
|
android:layout_height="@dimen/medium_profile_picture_size"
|
|
|
|
android:gravity="center"
|
2020-01-22 23:25:22 +00:00
|
|
|
android:src="@drawable/session_logo_white"
|
|
|
|
android:padding="12dp"
|
2019-12-17 15:24:42 +00:00
|
|
|
android:background="@drawable/profile_picture_view_rss_medium_background" />
|
|
|
|
|
2020-01-06 03:26:52 +00:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/largeSingleModeImageViewContainer"
|
|
|
|
android:layout_width="@dimen/large_profile_picture_size"
|
|
|
|
android:layout_height="@dimen/large_profile_picture_size">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/largeSingleModeImageView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@drawable/profile_picture_view_large_background" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2019-12-17 15:24:42 +00:00
|
|
|
</RelativeLayout>
|