2014-11-04 17:08:30 +00:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:context="eu.siacs.conversations.ui.AboutActivity"
|
2014-11-04 18:26:48 +00:00
|
|
|
android:layout_width="fill_parent"
|
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:layout_height="fill_parent"
|
|
|
|
android:background="?attr/color_background_primary">
|
2014-11-04 17:08:30 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:text="@string/pref_about_message"
|
2014-11-04 18:09:56 +00:00
|
|
|
android:autoLink="web"
|
2014-11-04 17:08:30 +00:00
|
|
|
android:layout_width="wrap_content"
|
2014-11-04 18:09:56 +00:00
|
|
|
android:layout_height="wrap_content"
|
2014-11-04 18:17:15 +00:00
|
|
|
android:linksClickable="true"
|
2015-01-13 04:08:26 +00:00
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginTop="@dimen/activity_vertical_margin"
|
2015-01-14 02:29:47 +00:00
|
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
2014-11-04 22:47:15 +00:00
|
|
|
android:textSize="?attr/TextSizeBody"
|
2015-07-20 13:43:28 +00:00
|
|
|
android:typeface="monospace"
|
|
|
|
android:fontFamily="monospace"/>
|
2014-11-04 17:08:30 +00:00
|
|
|
</ScrollView>
|