Fixed XML errors after merge
This commit is contained in:
parent
f7abd4237f
commit
73084c9cd3
6 changed files with 14 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
|||
<FrameLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:emojicon="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
|
@ -88,7 +88,7 @@
|
|||
android:text="This is a placeholder text to show the last messages"
|
||||
android:textColor="@color/primaryText"
|
||||
android:textSize="?attr/TextSizeBody"
|
||||
emojicon:emojiconSize="20sp" />
|
||||
app:emojiconSize="20sp" />
|
||||
|
||||
<com.makeramen.roundedimageview.RoundedImageView
|
||||
android:id="@+id/conversation_lastimage"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:emojicon="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
|
@ -34,7 +34,7 @@
|
|||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="fill_parent"
|
||||
android:background="@color/primarybackground"
|
||||
android:background="@color/primaryBackground"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="vertical"
|
||||
android:padding="2dp">
|
||||
|
@ -58,7 +58,7 @@
|
|||
android:textColor="@color/white"
|
||||
android:textColorHighlight="@color/grey800"
|
||||
android:textSize="?attr/TextSizeBody"
|
||||
emojicon:emojiconSize="28sp" />
|
||||
app:emojiconSize="28sp" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/download_button"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:emojicon="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
|
@ -49,7 +49,7 @@
|
|||
android:background="@color/primaryText"
|
||||
android:scaleType="centerCrop" />
|
||||
|
||||
<TextView
|
||||
<github.ankushsachdeva.emojicon.EmojiconTextView
|
||||
android:id="@+id/message_body"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
|
@ -57,7 +57,8 @@
|
|||
android:textColorLink="@color/primaryText"
|
||||
android:textColor="@color/primaryText"
|
||||
android:textColorHighlight="@color/grey500"
|
||||
android:textSize="?attr/TextSizeBody" />
|
||||
android:textSize="?attr/TextSizeBody"
|
||||
app:emojiconSize="28sp"/>
|
||||
|
||||
<Button
|
||||
android:id="@+id/download_button"
|
||||
|
|
|
@ -115,6 +115,8 @@
|
|||
<string name="pref_vibrate_summary">Vibrieren bei Erhalt einer neuen Nachricht</string>
|
||||
<string name="pref_sound">Benachrichtigungston</string>
|
||||
<string name="pref_sound_summary">Benachrichtigungston wiedergeben</string>
|
||||
<string name="pref_conference_notifications">Konferenz-Benachrichtigungen</string>
|
||||
<string name="pref_conference_notifications_summary">Benachrichtige mich bei jeder Konferenz-Nachricht und nicht nur, wenn ich angesprochen werde</string>
|
||||
<string name="pref_notification_grace_period">Gnadenfrist</string>
|
||||
<string name="pref_notification_grace_period_summary">Deaktiviere Benachrichtigungen für eine kurze Zeit nach Erhalt einer Nachricht, die von einem anderen deiner Clients kommt.</string>
|
||||
<string name="pref_advanced_options">Erweiterte Optionen</string>
|
||||
|
|
|
@ -26,4 +26,5 @@
|
|||
<color name="red800">#ffc62828</color>
|
||||
<color name="orange500">#ffff9800</color>
|
||||
<color name="green500">#ff259b24</color>
|
||||
<color name="green700">#ff0a7e07</color>
|
||||
</resources>
|
|
@ -117,6 +117,8 @@
|
|||
<string name="pref_vibrate_summary">Also vibrate when a new message arrives</string>
|
||||
<string name="pref_sound">Sound</string>
|
||||
<string name="pref_sound_summary">Play ringtone with notification</string>
|
||||
<string name="pref_conference_notifications">Conference notifications</string>
|
||||
<string name="pref_conference_notifications_summary">Always notify when a new conference message arrives instead of only when highlighted</string>
|
||||
<string name="pref_notification_grace_period">Notification grace period</string>
|
||||
<string name="pref_notification_grace_period_summary">Disable notifications for a short time after a carbon copy was received</string>
|
||||
<string name="pref_advanced_options">Advanced Options</string>
|
||||
|
|
Loading…
Reference in a new issue