Skip to content

Commit

Permalink
final
Browse files Browse the repository at this point in the history
  • Loading branch information
yaelahrip committed Jan 6, 2018
0 parents commit 30f5914
Showing 1 changed file with 112 additions and 0 deletions.
112 changes: 112 additions & 0 deletions app/src/main/res/layout/content_main.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
<?xml version="1.0" encoding="utf-8"?>
<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"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.rexaflux.fakename.MainActivity"
tools:showIn="@layout/app_bar_main">

<TextView
android:id="@+id/resName8"
android:layout_width="294dp"
android:layout_height="56dp"
android:layout_marginBottom="10dp"
android:fontFamily="monospace"
android:text="a simple tool to generate fake names for use in designs and mockups"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.059" />

<LinearLayout
android:layout_width="298dp"
android:layout_height="265dp"
android:layout_marginBottom="160dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent">

<TextView
android:id="@+id/resName"
android:layout_width="match_parent"
android:layout_height="29dp"
android:layout_marginBottom="10dp"
android:text="Nama"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<TextView
android:id="@+id/resSure"
android:layout_width="match_parent"
android:layout_height="29dp"
android:layout_marginBottom="10dp"
android:text="SureName"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<TextView
android:id="@+id/resGender"
android:layout_width="match_parent"
android:layout_height="29dp"
android:layout_marginBottom="10dp"
android:text="Gender"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<TextView
android:id="@+id/resRegion"
android:layout_width="match_parent"
android:layout_height="29dp"
android:layout_marginBottom="10dp"
android:text="Region"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<TextView
android:id="@+id/resAge"
android:layout_width="match_parent"
android:layout_height="29dp"
android:layout_marginBottom="10dp"
android:text="Age"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<TextView
android:id="@+id/resPhone"
android:layout_width="match_parent"
android:layout_height="29dp"
android:layout_marginBottom="10dp"
android:text="Phone"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<TextView
android:id="@+id/resEmail"
android:layout_width="match_parent"
android:layout_height="29dp"
android:text="Email"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</LinearLayout>

</android.support.constraint.ConstraintLayout>

0 comments on commit 30f5914

Please sign in to comment.