mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 11:58:09 +00:00
88 lines
No EOL
2.7 KiB
XML
88 lines
No EOL
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/status"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="30dp"
|
|
android:background="@color/colorF"
|
|
android:orientation="horizontal">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/status_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#ff6600">
|
|
|
|
<ImageView
|
|
android:id="@+id/side_menu_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_centerInParent="true"
|
|
android:contentDescription="@string/content_description_menu"
|
|
android:paddingBottom="6.7dp"
|
|
android:paddingLeft="10dp"
|
|
android:paddingTop="6.7dp"
|
|
android:src="@drawable/menu_burger"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/call_quality"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_centerInParent="true"
|
|
android:contentDescription="@string/content_description_call_quality"
|
|
android:src="@drawable/call_quality_indicator_0"
|
|
android:visibility="invisible"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/logo_app"
|
|
android:layout_width="18dp"
|
|
android:layout_height="18dp"
|
|
android:layout_centerInParent="true"
|
|
android:layout_toLeftOf="@id/status_text"
|
|
android:adjustViewBounds="true"
|
|
android:src="@drawable/linphone_notification_icon"/>
|
|
|
|
<TextView
|
|
android:id="@+id/status_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="30dp"
|
|
android:layout_centerInParent="true"
|
|
android:gravity="center_vertical"
|
|
android:lineSpacingExtra="0sp"
|
|
android:text="@string/app_name"
|
|
android:textColor="#ffffff"
|
|
android:textSize="13.3sp"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/status_led"
|
|
android:layout_width="45dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentTop="true"
|
|
android:adjustViewBounds="true"
|
|
android:gravity="end"
|
|
android:paddingRight="15dp"
|
|
android:src="@drawable/led_disconnected"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/voicemail"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_centerVertical="true"
|
|
android:gravity="center_vertical"
|
|
android:src="@drawable/voicemail"
|
|
android:visibility="gone"/>
|
|
|
|
<TextView
|
|
android:id="@+id/voicemail_count"
|
|
style="@style/font16"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:paddingLeft="5dp"
|
|
android:paddingRight="10dp"
|
|
android:visibility="gone"/>
|
|
</RelativeLayout>
|
|
</RelativeLayout> |