Guest User

fragment_list

a guest
Jun 19th, 2022
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.34 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout 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=".ListFragment">
  8.  
  9.     <TextView
  10.        android:id="@+id/longTest"
  11.        android:layout_width="wrap_content"
  12.        android:layout_height="wrap_content"
  13.        android:layout_marginTop="76dp"
  14.        android:text="Longitude: "
  15.        android:textSize="20sp"
  16.        app:layout_constraintEnd_toEndOf="parent"
  17.        app:layout_constraintHorizontal_bias="0.278"
  18.        app:layout_constraintStart_toStartOf="parent"
  19.        app:layout_constraintTop_toTopOf="parent" />
  20.  
  21.     <TextView
  22.        android:id="@+id/latTest"
  23.        android:layout_width="wrap_content"
  24.        android:layout_height="wrap_content"
  25.        android:layout_marginTop="60dp"
  26.        android:text="Latitude:"
  27.        android:textSize="20sp"
  28.        app:layout_constraintEnd_toEndOf="parent"
  29.        app:layout_constraintHorizontal_bias="0.274"
  30.        app:layout_constraintStart_toStartOf="parent"
  31.        app:layout_constraintTop_toBottomOf="@+id/longTest" />
  32. </androidx.constraintlayout.widget.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment