ConnectOut-sdp/sdp2023

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

Summary

Maintainability
Test Coverage
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".profile.ProfileRateActivity">

    <RatingBar
            android:id="@+id/simpleRatingBar"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:padding="5dp"
            android:numStars="5"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true" />

    <Button
            android:id="@+id/submitRatingButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:padding="5dp"
            android:text="@string/submit"
            android:layout_below="@id/simpleRatingBar"
            android:layout_centerHorizontal="true" />

    <TextView
            android:id="@+id/rateUserTextView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:padding="5dp"
            android:text="'user'"
            android:layout_above="@id/simpleRatingBar"
            android:layout_centerHorizontal="true" />

    <Button
            android:id="@+id/reportUser"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:padding="5dp"
            android:text="report user"
            android:layout_below="@id/submitRatingButton"
            android:layout_centerHorizontal="true" />
</RelativeLayout>