2020-07-01 17:08:28 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-05-02 09:16:25 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-07-01 17:08:28 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2021-05-02 09:16:25 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-07-01 17:08:28 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-05-02 09:16:25 +00:00
|
|
|
android:background="?android:selectableItemBackground"
|
|
|
|
android:padding="16dp">
|
2020-07-01 17:08:28 +00:00
|
|
|
|
2021-05-02 09:16:25 +00:00
|
|
|
<awais.instagrabber.customviews.ProfilePicView
|
|
|
|
android:id="@+id/profile_pic"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toStartOf="@id/username"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:size="small" />
|
2020-07-01 17:08:28 +00:00
|
|
|
|
2021-05-02 09:16:25 +00:00
|
|
|
<awais.instagrabber.customviews.UsernameTextView
|
|
|
|
android:id="@+id/username"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Subtitle1"
|
|
|
|
app:layout_constraintBottom_toTopOf="@id/full_name"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@id/profile_pic"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:text="username" />
|
2020-07-01 17:08:28 +00:00
|
|
|
|
2021-05-02 09:16:25 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
android:id="@+id/full_name"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Subtitle2"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="@id/username"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/username"
|
|
|
|
tools:text="Full Name" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|