Advertisement
Guest User

activity_task.xml

a guest
Oct 21st, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.88 KB | None | 0 0
  1. <android.support.design.widget.CoordinatorLayout
  2.    android:id="@+id/main_content"
  3.    xmlns:android="http://schemas.android.com/apk/res/android"
  4.    xmlns:app="http://schemas.android.com/apk/res-auto"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent">
  7.  
  8.     <ListView
  9.  
  10.        android:id="@+id/taskList"
  11.        android:layout_width="match_parent"
  12.        android:layout_height="match_parent"></ListView>
  13.  
  14.  
  15.     <android.support.design.widget.FloatingActionButton
  16.        android:id="@+id/myFab"
  17.        android:layout_width="wrap_content"
  18.        android:layout_height="wrap_content"
  19.        android:layout_gravity="bottom|right"
  20.        android:layout_margin="16dp"
  21.        android:src="@mipmap/add1"
  22.        app:layout_anchor="@id/taskList"
  23.        app:layout_anchorGravity="bottom|right" />
  24.  
  25.  
  26. </android.support.design.widget.CoordinatorLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement