Fixed text color in logs not changing with theme

This commit is contained in:
Viktor De Pasquale
2019-11-21 18:21:08 +01:00
parent e82bc1b7bc
commit 42606162b2
3 changed files with 34 additions and 3 deletions
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<data>
<variable
name="item"
type="com.topjohnwu.magisk.model.entity.recycler.ConsoleRvItem" />
<!--no actions are required-->
<variable
name="viewModel"
type="Object" />
</data>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="monospace"
android:text="@{item.item}"
android:textAppearance="?appearanceTextCaptionNormal"
android:textSize="10sp"
tools:text="@tools:sample/lorem/random" />
</layout>