Created
December 31, 2019 20:22
-
-
Save Lavanyagaur22/d4e9480e8a994234bb380b3be0c09296 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"?> | |
<LinearLayout 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:orientation="vertical" | |
android:layout_gravity="center" | |
android:gravity="center" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
tools:context=".MainActivity"> | |
<TextView | |
android:textSize="20sp" | |
android:id="@+id/tvOpenCount" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" /> | |
<EditText | |
android:id="@+id/etData" | |
android:layout_width="200dp" | |
android:layout_height="wrap_content" /> | |
<Button | |
android:id="@+id/btnSave" | |
android:text="SAVE" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" /> | |
<Button | |
android:id="@+id/btnRestore" | |
android:text="RESTORE" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" /> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment