2014-10-22 16:38:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-01-21 17:10:19 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="8dp"
|
|
|
|
android:paddingLeft="24dp"
|
|
|
|
android:paddingRight="24dp"
|
|
|
|
android:paddingTop="16dp">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/your_account"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/your_account"
|
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"
|
2016-01-21 17:10:19 +00:00
|
|
|
android:textSize="?attr/TextSizeBody"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/account"
|
|
|
|
android:layout_width="fill_parent"
|
2016-01-21 17:10:19 +00:00
|
|
|
android:layout_height="wrap_content"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/jabber_id"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-01-22 10:14:56 +00:00
|
|
|
android:layout_marginTop="8dp"
|
2014-10-22 16:38:44 +00:00
|
|
|
android:text="@string/account_settings_jabber_id"
|
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"
|
2016-01-21 17:10:19 +00:00
|
|
|
android:textSize="?attr/TextSizeBody"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
<AutoCompleteTextView
|
|
|
|
android:id="@+id/jid"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:hint="@string/account_settings_example_jabber_id"
|
|
|
|
android:inputType="textEmailAddress"
|
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"
|
|
|
|
android:textColorHint="?attr/color_text_secondary"
|
2016-01-22 10:14:56 +00:00
|
|
|
android:textSize="?attr/TextSizeBody" />
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|