Arthelh/NCNF

View on GitHub
app/src/main/res/layout/user_picture_view.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="150dp"
    android:layout_height="150dp"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    app:cardCornerRadius="75dp">

    <ImageView
        android:id="@+id/personal_profile_picture"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/quantum_grey800" />

    <TextView
        android:id="@+id/profile_picture_placeholder"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:textColor="@color/white"
        android:textSize="24sp"
        android:textStyle="bold"/>
</androidx.cardview.widget.CardView>