110 lines
4.5 KiB
XML
Executable File
110 lines
4.5 KiB
XML
Executable File
<?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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
>
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/profilePictureImageView"
|
|
android:layout_width="60dp"
|
|
android:layout_height="60dp"
|
|
android:layout_margin="10dp"
|
|
app:srcCompat="@drawable/empty_profile" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/nameTextView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:text="TextView"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium" />
|
|
|
|
<TextView
|
|
android:id="@+id/ratingTextView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="TextView"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/starImageView1"
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:src="@drawable/ic_star_border_black_48dp"
|
|
app:srcCompat="@drawable/ic_star_border_black_48dp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/starImageView2"
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:src="@drawable/ic_star_border_black_48dp"
|
|
app:srcCompat="@drawable/ic_star_border_black_48dp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/starImageView3"
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:src="@drawable/ic_star_border_black_48dp"
|
|
app:srcCompat="@drawable/ic_star_border_black_48dp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/starImageView4"
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:src="@drawable/ic_star_border_black_48dp"
|
|
app:srcCompat="@drawable/ic_star_border_black_48dp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/starImageView5"
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:src="@drawable/ic_star_border_black_48dp"
|
|
app:srcCompat="@drawable/ic_star_border_black_48dp" />
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/messageTextView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="TextView TextView TextView TextView TextView TextView TextView TextView TextView TextView TextView TextView TextView TextView"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small" />
|
|
|
|
<TextView
|
|
android:id="@+id/dateTextView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="TextView"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small" />
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:id="@+id/separatorImageView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_marginBottom="16dp"
|
|
android:layout_marginLeft="8dp"
|
|
android:layout_marginRight="8dp"
|
|
android:layout_marginTop="16dp"
|
|
app:srcCompat="@android:color/black" />
|
|
|
|
</LinearLayout> |