Advertisement
EvgeniiKraaaaaaaav

Untitled

Oct 14th, 2019
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.03 KB | None | 0 0
  1.  
  2. <?xml version="1.0" encoding="utf-8"?>
  3. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  4.    xmlns:app="http://schemas.android.com/apk/res-auto"
  5.    xmlns:tools="http://schemas.android.com/tools"
  6.    android:layout_width="match_parent"
  7.    android:layout_height="match_parent"
  8.    android:orientation="vertical"
  9.    tools:context=".MainActivity">
  10.  
  11.     <TextView
  12.        android:layout_width="match_parent"
  13.        android:layout_height="wrap_content"
  14.        android:id="@+id/textInfo"
  15.        android:text="Первый запуск."
  16.        android:textSize="24dp"/>
  17.  
  18.     <Button
  19.        android:layout_width="wrap_content"
  20.        android:layout_height="wrap_content"
  21.        android:id="@+id/buttonTouch"
  22.        android:text="Test"
  23.        android:onClick="onClick" />
  24.  
  25.     <Button
  26.        android:layout_width="wrap_content"
  27.        android:layout_height="wrap_content"
  28.        android:id="@+id/buttonExit"
  29.        android:text="Exit"
  30.        android:onClick="onClick" />
  31.  
  32. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement