linphone-android/res/layout/status.xml
Margaux Clerc 8793a506e3 Merge remote-tracking branch 'linphone-android/master' into obiane
Conflicts:
	res/drawable-xhdpi/checkbox_checked.png
	res/drawable-xhdpi/checkbox_unchecked.png
	res/drawable-xhdpi/resizable_textfield.9.png
	res/drawable/avatar_mask_chat.xml
	res/layout/about.xml
	res/layout/call.xml
	res/layout/call_inactive_row.xml
	res/layout/chat.xml
	res/layout/chat_bubble_incoming.xml
	res/layout/chat_bubble_outgoing.xml
	res/layout/chatlist.xml
	res/layout/contact.xml
	res/layout/contacts_list.xml
	res/layout/dialer.xml
	res/layout/history.xml
	res/layout/history_detail.xml
	res/layout/main.xml
	res/layout/search_contact_cell.xml
	res/layout/side_menu_account_cell.xml
	res/layout/side_menu_item_cell.xml
	res/layout/side_menu_main_account.xml
	res/values/non_localizable_custom.xml
	res/values/strings.xml
	res/values/styles.xml
	src/org/linphone/ChatFragment.java
	src/org/linphone/ContactsListFragment.java
	src/org/linphone/DialerFragment.java
	src/org/linphone/HistoryDetailFragment.java
	src/org/linphone/LinphoneActivity.java
	src/org/linphone/LinphoneService.java
2015-11-30 14:29:14 +01:00

88 lines
No EOL
2.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/status"
android:background="@color/colorC"
android:layout_width="match_parent"
android:layout_height="35dp"
android:orientation="horizontal">
<RelativeLayout
android:id="@+id/status_bar"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/side_menu_button"
android:src="@drawable/menu_burger"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="8dp"
android:layout_centerInParent="true"
android:layout_alignParentLeft="true"/>
<ImageView
android:id="@+id/call_quality"
android:src="@drawable/call_quality_indicator_0"
android:contentDescription="@string/content_description_call_quality"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:layout_centerInParent="true"
android:layout_alignParentLeft="true"
android:visibility="invisible" />
<ImageView
android:id="@+id/status_led"
android:src="@drawable/led_disconnected"
android:contentDescription="@string/content_description_led"
android:paddingLeft="5dp"
android:adjustViewBounds="true"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_toRightOf="@id/side_menu_button"/>
<TextView
android:id="@+id/status_text"
android:text="@string/status_not_connected"
style="@style/font7"
android:paddingLeft="5dp"
android:layout_centerVertical="true"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:layout_toRightOf="@id/status_led" />
<ImageView
android:id="@+id/voicemail"
android:src="@drawable/voicemail"
android:layout_centerVertical="true"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:visibility="gone" />
<TextView
android:id="@+id/voicemail_count"
style="@style/font16"
android:layout_alignParentRight="true"
android:paddingLeft="5dp"
android:paddingRight="10dp"
android:layout_centerVertical="true"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:visibility="gone" />
<ImageView
android:id="@+id/encryption"
android:src="@drawable/security_ko"
android:contentDescription="@string/content_description_encryption"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:padding="5dp"
android:layout_centerInParent="true"
android:visibility="gone"
android:layout_alignParentRight="true" />
</RelativeLayout>
</RelativeLayout>