29 lines
No EOL
972 B
XML
29 lines
No EOL
972 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
android:id="@+id/contacts"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_weight="0.2"
|
|
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_contacts"
|
|
android:scaleType="fitXY"
|
|
android:src="@drawable/contacts" />
|
|
|
|
<TextView
|
|
android:id="@+id/text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_centerVertical="true"
|
|
android:paddingLeft="40dp"
|
|
android:textColor="@drawable/text_color"
|
|
android:text="@string/button_contacts"
|
|
android:textSize="18dp" />
|
|
|
|
</RelativeLayout> |