40 lines
1.4 KiB
XML
40 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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:paddingStart="@dimen/padding"
|
|
android:paddingEnd="@dimen/padding">
|
|
|
|
<TextView
|
|
android:id="@+id/name_text"
|
|
style="@style/NameStyle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/andrew_kemp"
|
|
android:textAlignment="center" />
|
|
|
|
<ImageView
|
|
android:id="@+id/star_image"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/layout_margin"
|
|
android:contentDescription="@string/yellow_star"
|
|
app:srcCompat="@android:drawable/btn_star_big_on" />
|
|
|
|
<ScrollView
|
|
android:id="@+id/bio_scroll"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<TextView
|
|
android:id="@+id/bio_text"
|
|
style="@style/NameStyle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:lineSpacingMultiplier="1.2"
|
|
android:text="@string/bio" />
|
|
</ScrollView>
|
|
|
|
</LinearLayout> |