Advertisement
noahz

taxi xml

May 5th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.33 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:tools="http://schemas.android.com/tools"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    android:paddingBottom="@dimen/activity_vertical_margin"
  7.    android:paddingLeft="@dimen/activity_horizontal_margin"
  8.    android:paddingRight="@dimen/activity_horizontal_margin"
  9.    android:paddingTop="@dimen/activity_vertical_margin"
  10.    tools:context="com.example.chris.safebacandroid.TaxiActivity"
  11.    android:id="@+id/Taxis">
  12.  
  13.     <TextView
  14.        android:layout_width="wrap_content"
  15.        android:layout_height="wrap_content"
  16.        android:textAppearance="?android:attr/textAppearanceLarge"
  17.        android:text="Click Here for Taxis by Zip"
  18.        android:id="@+id/textView"
  19.        android:layout_alignParentTop="true"
  20.        android:layout_centerHorizontal="true" />
  21.  
  22.     <Button
  23.        android:layout_width="wrap_content"
  24.        android:layout_height="wrap_content"
  25.        android:text="Click here"
  26.        android:id="@+id/cab_link"
  27.        android:layout_below="@+id/textView"
  28.        android:layout_centerHorizontal="true"
  29.        android:clickable="true"
  30.        android:enabled="true"
  31.        android:nestedScrollingEnabled="false" />
  32. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement