|
@@ -1,23 +1,59 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
- android:paddingBottom="@dimen/activity_vertical_margin"
|
|
|
- android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
|
- android:paddingRight="@dimen/activity_horizontal_margin"
|
|
|
- android:paddingTop="@dimen/activity_vertical_margin"
|
|
|
tools:context="macampcorp.macamp.activities.CreditsActivity">
|
|
|
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/imageView2"
|
|
|
+ android:layout_width="87dp"
|
|
|
+ android:layout_height="96dp"
|
|
|
+ android:layout_marginBottom="8dp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:srcCompat="@drawable/mj"
|
|
|
+ tools:layout_editor_absoluteX="8dp" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/imageView3"
|
|
|
+ android:layout_width="133dp"
|
|
|
+ android:layout_height="96dp"
|
|
|
+ android:layout_marginBottom="8dp"
|
|
|
+ android:layout_marginEnd="8dp"
|
|
|
+ android:layout_marginRight="8dp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:srcCompat="@drawable/angouleme" />
|
|
|
+
|
|
|
<ScrollView
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:id="@+id/scrollView3" >
|
|
|
+ android:layout_width="344dp"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ android:layout_marginBottom="8dp"
|
|
|
+ android:layout_marginEnd="8dp"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:layout_marginRight="8dp"
|
|
|
+ android:layout_marginStart="8dp"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ app:layout_constraintBottom_toTopOf="@+id/imageView3"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
- <TextView
|
|
|
- android:layout_width="wrap_content"
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:text="New Text"
|
|
|
- android:id="@+id/tv_credits" />
|
|
|
+ android:orientation="vertical" >
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_credits"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="TextView"
|
|
|
+ tools:layout_editor_absoluteX="51dp"
|
|
|
+ tools:layout_editor_absoluteY="133dp" />
|
|
|
+ </LinearLayout>
|
|
|
</ScrollView>
|
|
|
-</RelativeLayout>
|
|
|
+
|
|
|
+</android.support.constraint.ConstraintLayout>
|