2017-07-03 18:26:38 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-07-09 14:46:47 +00:00
|
|
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-07-03 18:26:38 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-07-09 15:00:08 +00:00
|
|
|
tools:context="com.codigoparallevar.minicards.MainActivity">
|
2017-07-03 18:26:38 +00:00
|
|
|
|
2017-07-09 14:46:47 +00:00
|
|
|
<!--
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
|
|
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
app:popupTheme="@style/AppTheme.PopupOverlay" />
|
|
|
|
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
-->
|
|
|
|
|
2017-07-09 15:00:08 +00:00
|
|
|
<com.codigoparallevar.minicards.CanvasView
|
2017-07-09 14:46:47 +00:00
|
|
|
android:id="@+id/canvasView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
|
|
<!-- include layout="@layout/content_main" / -->
|
|
|
|
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/fab"
|
2017-07-03 18:26:38 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-07-09 14:46:47 +00:00
|
|
|
android:layout_gravity="bottom|end"
|
|
|
|
android:layout_margin="@dimen/fab_margin"
|
|
|
|
app:srcCompat="@android:drawable/ic_dialog_email" />
|
2017-07-03 18:26:38 +00:00
|
|
|
|
2017-07-09 14:46:47 +00:00
|
|
|
</android.support.design.widget.CoordinatorLayout>
|