mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-21 17:05:39 +03:00
Add some TextViews
This commit is contained in:
parent
a619b0141a
commit
9f101423e2
1 changed files with 40 additions and 0 deletions
|
@ -268,6 +268,46 @@
|
|||
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="?android:colorBackground"
|
||||
android:padding="8dp"
|
||||
android:text="Background"
|
||||
android:textColor="?colorOnBackground" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="?colorPrimary"
|
||||
android:padding="8dp"
|
||||
android:text="Primary"
|
||||
android:textColor="?colorOnPrimary" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="?colorSecondary"
|
||||
android:padding="8dp"
|
||||
android:text="Secondary"
|
||||
android:textColor="?colorOnSecondary" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="?colorError"
|
||||
android:padding="8dp"
|
||||
android:text="Error"
|
||||
android:textColor="?colorOnError" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="?colorSurface"
|
||||
android:padding="8dp"
|
||||
android:text="Surface"
|
||||
android:textColor="?colorOnSurface" />
|
||||
|
||||
<com.google.android.material.textfield.TextInputLayout
|
||||
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||||
android:layout_width="match_parent"
|
||||
|
|
Loading…
Reference in a new issue