Created
April 14, 2024 13:42
-
-
Save VahidHoseini-ir/e29fdd1a44e7520b042d77bdf087a21c to your computer and use it in GitHub Desktop.
sample ui
This file contains 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"?> | |
<androidx.constraintlayout.widget.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:orientation="horizontal" | |
tools:context=".MainActivity"> | |
<LinearLayout | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:orientation="vertical" | |
app:layout_constraintBottom_toBottomOf="parent" | |
app:layout_constraintEnd_toEndOf="parent" | |
app:layout_constraintStart_toEndOf="@+id/linearLayout" | |
app:layout_constraintTop_toTopOf="parent"> | |
<TextView | |
android:id="@+id/textView4" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="نام خانوادگی" /> | |
<TextView | |
android:id="@+id/textView2" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="نام " /> | |
</LinearLayout> | |
<LinearLayout | |
android:id="@+id/linearLayout" | |
android:layout_width="wrap_content" | |
android:layout_height="100dp" | |
android:orientation="vertical" | |
app:layout_constraintBottom_toBottomOf="parent" | |
app:layout_constraintTop_toTopOf="parent"> | |
<EditText | |
android:id="@+id/editTextText2" | |
android:layout_width="200dp" | |
android:layout_height="wrap_content" | |
android:inputType="text" /> | |
<EditText | |
android:id="@+id/editTextText" | |
android:layout_width="200dp" | |
android:layout_height="wrap_content" | |
android:inputType="text" /> | |
</LinearLayout> | |
</androidx.constraintlayout.widget.ConstraintLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment