2014-10-22 16:38:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-07-21 00:21:34 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?android:attr/activatedBackgroundIndicator"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingBottom="8dp"
|
|
|
|
android:paddingTop="8dp">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2015-07-21 00:21:34 +00:00
|
|
|
<com.makeramen.roundedimageview.RoundedImageView
|
2014-10-22 16:38:44 +00:00
|
|
|
android:id="@+id/account_image"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_alignParentLeft="true"
|
2014-11-29 12:58:18 +00:00
|
|
|
android:src="@drawable/ic_profile"
|
2015-07-21 00:21:34 +00:00
|
|
|
android:contentDescription="@string/account_image_description"
|
|
|
|
app:riv_corner_radius="2dp" />
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_toRightOf="@+id/account_image"
|
|
|
|
android:orientation="vertical"
|
2015-04-01 21:45:46 +00:00
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:layout_toLeftOf="@+id/tgl_account_status"
|
|
|
|
android:layout_toStartOf="@+id/tgl_account_status">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/account_jid"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:scrollHorizontally="false"
|
|
|
|
android:singleLine="true"
|
Dark theme, theme switch, icons, style, strings
added some white icons,
changed hardcoded icons to theme attributes,
changed icon_edit_dark to icon_edit_body to reflect icons position,
grey message bubbles in dark theme,
misc
purged ic_action_chat as it wasn't used
preference use_white_background changed to use_green_background, default true
grey chat bubbles darker, text white
replaced all grey600 with black icons and 0.54 alpha attribute
highlightColor in dark grey chat bubble now darker than background
2016-05-12 18:00:18 +00:00
|
|
|
android:textColor="?attr/color_text_primary"
|
2014-10-22 16:38:44 +00:00
|
|
|
android:textSize="?attr/TextSizeHeadline" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/account_status"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/account_status_unknown"
|
Dark theme, theme switch, icons, style, strings
added some white icons,
changed hardcoded icons to theme attributes,
changed icon_edit_dark to icon_edit_body to reflect icons position,
grey message bubbles in dark theme,
misc
purged ic_action_chat as it wasn't used
preference use_white_background changed to use_green_background, default true
grey chat bubbles darker, text white
replaced all grey600 with black icons and 0.54 alpha attribute
highlightColor in dark grey chat bubble now darker than background
2016-05-12 18:00:18 +00:00
|
|
|
android:textColor="?attr/color_text_secondary"
|
2014-10-22 16:38:44 +00:00
|
|
|
android:textSize="?attr/TextSizeBody"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
2015-07-18 17:38:52 +00:00
|
|
|
<eu.siacs.conversations.ui.widget.Switch
|
|
|
|
style="@style/MD"
|
2015-04-01 10:14:05 +00:00
|
|
|
android:id="@+id/tgl_account_status"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true"
|
2015-07-18 17:38:52 +00:00
|
|
|
android:padding="16dp"
|
2015-04-01 10:14:05 +00:00
|
|
|
android:focusable="false"/>
|
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
</RelativeLayout>
|