55 lines
2 KiB
XML
55 lines
2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/call_notification_holder"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:id="@+id/incoming_call_caller"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/normal_margin"
|
|
android:paddingLeft="@dimen/activity_margin"
|
|
android:textSize="@dimen/bigger_text_size"
|
|
android:textStyle="bold"
|
|
tools:text="John"/>
|
|
|
|
<TextView
|
|
android:id="@+id/incoming_call_status"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/incoming_call_caller"
|
|
android:layout_marginBottom="@dimen/small_margin"
|
|
android:paddingLeft="@dimen/activity_margin"
|
|
android:textSize="@dimen/normal_text_size"
|
|
tools:text="Incoming call"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/call_notification_actions"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/incoming_call_status"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/call_decline"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/ripple"
|
|
android:padding="@dimen/medium_margin"
|
|
android:src="@drawable/ic_phone_down"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/call_answer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/ripple"
|
|
android:padding="@dimen/medium_margin"
|
|
android:src="@drawable/ic_phone"/>
|
|
|
|
</LinearLayout>
|
|
</RelativeLayout>
|