Advertisement
Diaxon

activity_main.xml

Oct 22nd, 2023
853
0
142 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.00 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout
  3.    xmlns:android="http://schemas.android.com/apk/res/android"
  4.    xmlns:tools="http://schemas.android.com/tools"
  5.    xmlns:app="http://schemas.android.com/apk/res-auto"
  6.    android:layout_width="match_parent"
  7.    android:layout_height="match_parent"
  8.    tools:context=".MainActivity">
  9.  
  10.  
  11.     <TextView
  12.        android:id="@+id/textView"
  13.        android:layout_width="wrap_content"
  14.        android:layout_height="wrap_content"
  15.        android:text="TextView"
  16.        tools:layout_editor_absoluteX="143dp"
  17.        tools:layout_editor_absoluteY="269dp" />
  18.  
  19.     <EditText
  20.        android:id="@+id/editTextNumber"
  21.        android:layout_width="wrap_content"
  22.        android:layout_height="wrap_content"
  23.        android:ems="10"
  24.        android:inputType="number"
  25.        tools:layout_editor_absoluteX="46dp"
  26.        tools:layout_editor_absoluteY="136dp" />
  27. </androidx.constraintlayout.widget.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement