mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 02:25:19 +00:00
46 lines
1.9 KiB
XML
46 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/doubleModeImageViewContainer"
|
|
android:layout_width="@dimen/medium_profile_picture_size"
|
|
android:layout_height="@dimen/medium_profile_picture_size">
|
|
|
|
<ImageView
|
|
android:id="@+id/doubleModeImageView1"
|
|
android:layout_width="@dimen/small_profile_picture_size"
|
|
android:layout_height="@dimen/small_profile_picture_size"
|
|
android:background="@drawable/profile_picture_view_small_background"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentTop="true" />
|
|
|
|
<ImageView
|
|
android:id="@+id/doubleModeImageView2"
|
|
android:layout_width="@dimen/small_profile_picture_size"
|
|
android:layout_height="@dimen/small_profile_picture_size"
|
|
android:background="@drawable/profile_picture_view_small_background"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentBottom="true" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<ImageView
|
|
android:id="@+id/singleModeImageView"
|
|
android:layout_width="@dimen/medium_profile_picture_size"
|
|
android:layout_height="@dimen/medium_profile_picture_size"
|
|
android:background="@drawable/profile_picture_view_medium_background" />
|
|
|
|
<TextView
|
|
android:id="@+id/rssTextView"
|
|
android:layout_width="@dimen/medium_profile_picture_size"
|
|
android:layout_height="@dimen/medium_profile_picture_size"
|
|
android:gravity="center"
|
|
android:text="RSS"
|
|
android:textColor="@color/text"
|
|
android:textSize="@dimen/small_font_size"
|
|
android:background="@drawable/profile_picture_view_rss_medium_background" />
|
|
|
|
</RelativeLayout> |