mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
28 lines
No EOL
928 B
XML
28 lines
No EOL
928 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
android:id="@+id/chat"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<ImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:adjustViewBounds="true"
|
|
android:contentDescription="@string/content_description_chat"
|
|
android:scaleType="fitXY"
|
|
android:src="@drawable/chat" />
|
|
|
|
<TextView
|
|
android:id="@+id/text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_alignBottom="@id/image"
|
|
android:paddingBottom="10dp"
|
|
android:textColor="@drawable/text_color"
|
|
android:text="@string/button_chat"
|
|
android:textSize="12sp" />
|
|
|
|
</RelativeLayout> |