mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
47 lines
2.1 KiB
XML
47 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
tools:context="org.thoughtcrime.securesms.components.WebxdcView">
|
|
|
|
<LinearLayout android:id="@+id/webxdc_container"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clickable="false"
|
|
android:focusable="false"
|
|
android:gravity="center_vertical"
|
|
android:orientation="vertical">
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/webxdc_icon"
|
|
android:layout_marginTop="2dp"
|
|
android:layout_width="128dp"
|
|
android:layout_height="128dp"
|
|
android:scaleType="centerCrop"/>
|
|
|
|
<TextView android:id="@+id/webxdc_app_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
style="@style/Signal.Text.Body"
|
|
android:singleLine="true"
|
|
android:maxLines="1"
|
|
android:ellipsize="end"
|
|
android:clickable="false"
|
|
android:textColor="?conversation_item_incoming_text_primary_color"
|
|
android:textStyle="bold"
|
|
tools:text="Great App"/>
|
|
|
|
<TextView android:id="@+id/webxdc_subtitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
style="@style/Signal.Text.Body"
|
|
android:singleLine="true"
|
|
android:maxLines="1"
|
|
android:ellipsize="end"
|
|
android:clickable="false"
|
|
android:textColor="?conversation_item_incoming_text_primary_color"
|
|
tools:text="Tap to start"/>
|
|
|
|
</LinearLayout>
|
|
</merge>
|