mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
More dark theme fixes
This commit is contained in:
parent
b185de70ca
commit
dc23df8b3a
4 changed files with 10 additions and 8 deletions
|
|
@ -19,8 +19,8 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="16dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:text="@{model.mediaEncryption}"
|
||||
android:textColor="@color/black"
|
||||
android:text="@{model.mediaEncryption, default=`Media Encryption: Post Quantum ZRTP`}"
|
||||
android:textColor="?attr/color_grey_900"
|
||||
android:gravity="center_vertical" />
|
||||
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
|
|
@ -30,7 +30,7 @@
|
|||
android:layout_marginStart="16dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:text="@{model.zrtpCipher}"
|
||||
android:textColor="@color/black"
|
||||
android:textColor="?attr/color_grey_900"
|
||||
android:gravity="center_vertical"
|
||||
android:visibility="@{model.isMediaEncryptionZrtp ? View.VISIBLE : View.GONE}"/>
|
||||
|
||||
|
|
@ -41,7 +41,7 @@
|
|||
android:layout_marginStart="16dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:text="@{model.zrtpKeyAgreement}"
|
||||
android:textColor="@color/black"
|
||||
android:textColor="?attr/color_grey_900"
|
||||
android:gravity="center_vertical"
|
||||
android:visibility="@{model.isMediaEncryptionZrtp ? View.VISIBLE : View.GONE}" />
|
||||
|
||||
|
|
@ -52,7 +52,7 @@
|
|||
android:layout_marginStart="16dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:text="@{model.zrtpHash}"
|
||||
android:textColor="@color/black"
|
||||
android:textColor="?attr/color_grey_900"
|
||||
android:gravity="center_vertical"
|
||||
android:visibility="@{model.isMediaEncryptionZrtp ? View.VISIBLE : View.GONE}" />
|
||||
|
||||
|
|
@ -63,7 +63,7 @@
|
|||
android:layout_marginStart="16dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:text="@{model.zrtpAuthTag}"
|
||||
android:textColor="@color/black"
|
||||
android:textColor="?attr/color_grey_900"
|
||||
android:gravity="center_vertical"
|
||||
android:visibility="@{model.isMediaEncryptionZrtp ? View.VISIBLE : View.GONE}" />
|
||||
|
||||
|
|
@ -74,7 +74,7 @@
|
|||
android:layout_marginStart="16dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:text="@{model.zrtpAuthSas}"
|
||||
android:textColor="@color/black"
|
||||
android:textColor="?attr/color_grey_900"
|
||||
android:gravity="center_vertical"
|
||||
android:visibility="@{model.isMediaEncryptionZrtp ? View.VISIBLE : View.GONE}" />
|
||||
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@
|
|||
android:onClick="@{editSubjectClickListener}"
|
||||
android:src="@drawable/pencil_simple"
|
||||
android:visibility="@{!viewModel.isGroup || viewModel.isReadOnly || !viewModel.isMyselfAdmin ? View.GONE : View.VISIBLE}"
|
||||
app:tint="?attr/color_grey_600"
|
||||
app:layout_constraintBottom_toBottomOf="@id/title"
|
||||
app:layout_constraintStart_toEndOf="@id/title"
|
||||
app:layout_constraintTop_toTopOf="@id/title" />
|
||||
|
|
|
|||
|
|
@ -88,6 +88,7 @@
|
|||
android:layout_height="@dimen/icon_size"
|
||||
android:src="@drawable/dots_three_vertical"
|
||||
android:visibility="@{model.showMenu ? View.VISIBLE : View.GONE}"
|
||||
app:tint="?attr/color_grey_600"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@id/name"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
|
|
|
|||
|
|
@ -119,7 +119,7 @@
|
|||
</style>
|
||||
<style name="call_start_numpad_digits_style">
|
||||
<item name="android:fontFamily">@font/noto_sans</item>
|
||||
<item name="android:textColor">?attr/color_main2_600</item>
|
||||
<item name="android:textColor">@color/gray_main2_600</item>
|
||||
<item name="android:textSize">32sp</item>
|
||||
<item name="android:gravity">center</item>
|
||||
<item name="android:elevation">3dp</item>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue