mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
38 lines
No EOL
1.2 KiB
XML
38 lines
No EOL
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/numpad_background">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/calls"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
android:gravity="center_vertical"
|
|
android:orientation="vertical">
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@id/calls"
|
|
android:orientation="vertical"
|
|
android:paddingTop="30dip">
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_contact_picture"
|
|
android:id="@+id/contactPicture"
|
|
android:src="@drawable/unknown_small"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:scaleType="fitCenter"
|
|
android:minWidth="128dp"
|
|
android:minHeight="128dp"
|
|
android:paddingBottom="10sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout> |