mirror of
https://github.com/rebelonion/Dantotsu.git
synced 2026-01-18 23:53:56 +00:00
* nothing * feet: Attached strings * feet(fix) --------- Co-authored-by: rebel onion <87634197+rebelonion@users.noreply.github.com>
36 lines
1.4 KiB
XML
36 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="8dp"
|
|
android:orientation="vertical">
|
|
<com.google.android.material.card.MaterialCardView
|
|
android:id="@+id/profileUserAvatarContainer"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:backgroundTint="@color/bg_white"
|
|
app:cardCornerRadius="124dp">
|
|
<ImageView
|
|
android:id="@+id/profileUserAvatar"
|
|
android:layout_width="100dp"
|
|
android:layout_height="100dp"
|
|
tools:tint="@color/transparent"
|
|
tools:ignore="ContentDescription,ImageContrastCheck" />
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
<TextView
|
|
android:id="@+id/profileUserName"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal|center_vertical"
|
|
android:fontFamily="@font/poppins_semi_bold"
|
|
android:text="@string/username"
|
|
android:textColor="?attr/colorOnBackground"
|
|
android:textSize="12sp"
|
|
android:ellipsize="end"
|
|
android:textStyle="bold"/>
|
|
|
|
</LinearLayout> |