kopia lustrzana https://github.com/meshtastic/Meshtastic-Android
Merge branch 'master' into remove-hints
commit
2c50b9890a
|
@ -1,5 +1,6 @@
|
||||||
package com.geeksville.mesh.ui
|
package com.geeksville.mesh.ui
|
||||||
|
|
||||||
|
import android.graphics.Color
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.view.LayoutInflater
|
import android.view.LayoutInflater
|
||||||
import android.view.View
|
import android.view.View
|
||||||
|
@ -54,7 +55,7 @@ class MessagesFragment : ScreenFragment("Messages"), Logging {
|
||||||
|
|
||||||
private fun getShortDateTime(time: Date): String {
|
private fun getShortDateTime(time: Date): String {
|
||||||
// return time if within 24 hours, otherwise date/time
|
// return time if within 24 hours, otherwise date/time
|
||||||
val one_day = 60 * 60 * 24 * 100L
|
val one_day = 60 * 60 * 24 * 1000
|
||||||
if (System.currentTimeMillis() - time.time > one_day) {
|
if (System.currentTimeMillis() - time.time > one_day) {
|
||||||
return dateTimeFormat.format(time)
|
return dateTimeFormat.format(time)
|
||||||
} else return timeFormat.format(time)
|
} else return timeFormat.format(time)
|
||||||
|
@ -142,7 +143,8 @@ class MessagesFragment : ScreenFragment("Messages"), Logging {
|
||||||
val nodes = model.nodeDB.nodes.value!!
|
val nodes = model.nodeDB.nodes.value!!
|
||||||
val node = nodes.get(msg.from)
|
val node = nodes.get(msg.from)
|
||||||
// Determine if this is my message (originated on this device).
|
// Determine if this is my message (originated on this device).
|
||||||
val isMe = model.myNodeInfo.value?.myNodeNum == node?.num
|
// val isMe = model.myNodeInfo.value?.myNodeNum == node?.num
|
||||||
|
val isMe = msg.from == "^local"
|
||||||
|
|
||||||
// Set cardview offset and color.
|
// Set cardview offset and color.
|
||||||
val marginParams = holder.card.layoutParams as ViewGroup.MarginLayoutParams
|
val marginParams = holder.card.layoutParams as ViewGroup.MarginLayoutParams
|
||||||
|
@ -180,7 +182,7 @@ class MessagesFragment : ScreenFragment("Messages"), Logging {
|
||||||
holder.username.text = user?.shortName ?: msg.from
|
holder.username.text = user?.shortName ?: msg.from
|
||||||
}
|
}
|
||||||
if (msg.errorMessage != null) {
|
if (msg.errorMessage != null) {
|
||||||
// FIXME, set the style to show a red error message
|
context?.let { holder.card.setCardBackgroundColor(Color.RED) }
|
||||||
holder.messageText.text = msg.errorMessage
|
holder.messageText.text = msg.errorMessage
|
||||||
} else {
|
} else {
|
||||||
holder.messageText.text = msg.text
|
holder.messageText.text = msg.text
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<color name="colorPrimary">#141414</color>
|
<color name="colorPrimary">#141414</color>
|
||||||
<color name="colorPrimaryDark">#141414</color>
|
<color name="colorPrimaryDark">#141414</color>
|
||||||
<color name="colorMsg">#212121</color>
|
<color name="colorMsg">#212121</color>
|
||||||
<color name="colorMyMsg">#212121</color>
|
<color name="colorMyMsg">#28463C</color>
|
||||||
<color name="colorDebugBackground">#141414</color>
|
<color name="colorDebugBackground">#141414</color>
|
||||||
<color name="colorAdvancedBackground">#141414</color>
|
<color name="colorAdvancedBackground">#141414</color>
|
||||||
<color name="colorIconTint">#FFFFFF</color>
|
<color name="colorIconTint">#FFFFFF</color>
|
||||||
|
|
Ładowanie…
Reference in New Issue