Created
June 23, 2017 02:35
-
-
Save dharmakshetri/81fdd0ba775b40e2bf348ee55263c7df to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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="co.prandroid.firstkotlin.MainActivity"> | |
<EditText | |
android:id="@+id/editTextValue" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:ems="10" | |
android:inputType="textPersonName" | |
android:hint="enter some text here" | |
app:layout_constraintStart_toStartOf="parent" | |
android:layout_marginStart="8dp" | |
app:layout_constraintEnd_toEndOf="parent" | |
android:layout_marginEnd="8dp" | |
app:layout_constraintTop_toTopOf="parent" | |
android:layout_marginTop="8dp" /> | |
<Button | |
android:id="@+id/buttonShow" | |
android:layout_width="wrap_content" | |
android:layout_height="51dp" | |
android:layout_marginTop="8dp" | |
android:text="Show" | |
android:onClick="btnShowValue" | |
app:layout_constraintBottom_toBottomOf="parent" | |
app:layout_constraintLeft_toLeftOf="parent" | |
app:layout_constraintRight_toRightOf="parent" | |
app:layout_constraintTop_toBottomOf="@+id/editTextValue" | |
app:layout_constraintEnd_toEndOf="parent" | |
android:layout_marginEnd="8dp" | |
app:layout_constraintStart_toStartOf="parent" | |
android:layout_marginStart="8dp" | |
app:layout_constraintVertical_bias="0.075" /> | |
<TextView | |
android:id="@+id/textViewResult" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="TextView" | |
app:layout_constraintLeft_toLeftOf="parent" | |
app:layout_constraintRight_toRightOf="parent" | |
android:layout_marginTop="8dp" | |
app:layout_constraintTop_toBottomOf="@+id/buttonShow" /> | |
</android.support.constraint.ConstraintLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment