0% found this document useful (0 votes)
18 views4 pages

Fransisca

Uploaded by

Asna
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views4 pages

Fransisca

Uploaded by

Asna
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

<?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"
tools:context="com.example.asna.datadiri.MainActivity">

<LinearLayout
android:layout_width="336dp"
android:layout_height="463dp"
android:orientation="vertical"
tools:layout_editor_absoluteX="23dp"
tools:layout_editor_absoluteY="26dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textSize="25dp"
android:text="IDENTITAS DIRI"
tools:layout_editor_absoluteX="163dp"
tools:layout_editor_absoluteY="16dp" />

<ImageView
android:id="@+id/imageView"
android:layout_width="88dp"
android:layout_height="168dp"
android:layout_gravity="center"
app:srcCompat="@drawable/fransisca"
tools:layout_editor_absoluteX="248dp"
tools:layout_editor_absoluteY="150dp" />

<TextView
android:layout_width="257dp"
android:layout_height="28dp"
android:layout_marginLeft="20dp"
android:text="Nama : Fransisca Fitria"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="150dp" />

<TextView
android:layout_width="wrap_content"
android:layout_height="28dp"
android:layout_marginLeft="20dp"
android:text="Tempat/Tgl Lahir : Blitar, 19 April 2019"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="150dp" />

<TextView
android:layout_width="wrap_content"
android:layout_height="28dp"
android:layout_marginLeft="20dp"
android:text="Jenis Kelamin : Perempuan"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="214dp" />

<TextView
android:layout_width="266dp"
android:layout_height="28dp"
android:layout_marginLeft="20dp"
android:text="Alamat : Srengat"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="255dp" />

<TextView
android:layout_width="206dp"
android:layout_height="28dp"
android:layout_marginLeft="20dp"
android:text="Agama : Islam"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="334dp" />

</LinearLayout>

</android.support.constraint.ConstraintLayout>
package com.example.asna.datadiri;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}

You might also like