Advertisement
euis_kusesa

activity_main.xml

Dec 24th, 2018
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.10 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    xmlns:tools="http://schemas.android.com/tools"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    tools:context=".ListStatis">
  8.  
  9.  
  10.     <TextView
  11.        android:layout_width="294dp"
  12.        android:layout_height="38dp"
  13.        android:text="List View Statis"
  14.        android:textAlignment="center"
  15.        android:textSize="25dp"
  16.        android:textStyle="bold"
  17.        app:layout_constraintBottom_toBottomOf="parent"
  18.        app:layout_constraintHorizontal_bias="0.448"
  19.        app:layout_constraintLeft_toLeftOf="parent"
  20.        app:layout_constraintRight_toRightOf="parent"
  21.        app:layout_constraintTop_toTopOf="parent"
  22.        app:layout_constraintVertical_bias="0.006" />
  23.  
  24.     <ListView
  25.        android:id="@+id/list_view"
  26.        android:layout_width="match_parent"
  27.        android:layout_height="match_parent"
  28.        android:layout_marginTop="35dp"></ListView>
  29.  
  30. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement