mirror of
https://github.com/oxen-io/session-android.git
synced 2025-12-13 13:22:51 +00:00
74 lines
2.9 KiB
XML
74 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<merge
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:context="org.thoughtcrime.securesms.loki.views.OpenGroupInvitationView">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:paddingHorizontal="@dimen/medium_spacing"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageButton
|
|
android:id="@+id/join_open_group_button"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:background="@drawable/circle_tintable"
|
|
android:backgroundTint="#00E076"
|
|
android:contentDescription="@string/open_group_invitation_view__join_accessibility_description"
|
|
app:srcCompat="@drawable/ic_add_white_original_24dp" />
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/open_group_icon_image_view_container"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:background="@drawable/circle_tintable"
|
|
android:backgroundTint="#00E076">
|
|
|
|
<ImageView
|
|
android:id="@+id/open_group_icon_image_view"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_centerInParent="true"
|
|
android:contentDescription="@string/open_group_invitation_view__join_accessibility_description"
|
|
android:src="@drawable/ic_globe" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@dimen/small_spacing"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/name_text_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textStyle="bold"
|
|
android:textSize="@dimen/large_font_size"
|
|
android:maxLines="1"
|
|
tools:text="Open group" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="@dimen/small_font_size"
|
|
android:maxLines="1"
|
|
android:text="@string/open_group_invitation_view__open_group_invitation" />
|
|
|
|
<TextView
|
|
android:id="@+id/url_text_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="@dimen/small_font_size"
|
|
android:maxLines="1"
|
|
tools:text="http://1.1.1.1" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</merge> |