Created
May 14, 2018 07:55
-
-
Save amy6/c4dd7bcf699bd9814f2eb925b15d38ea to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!---Main Layout--> | |
<android.support.design.widget.CoordinatorLayout | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
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" | |
android:fitsSystemWindows="true" | |
tools:context=".DashboardActivity"> | |
<android.support.design.widget.AppBarLayout | |
android:id="@+id/appBar" | |
android:layout_width="match_parent" | |
android:layout_height="300dp" | |
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | |
android:fitsSystemWindows="true"> | |
<android.support.design.widget.CollapsingToolbarLayout | |
android:id="@+id/collapsingToolbar" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
app:layout_scrollFlags="scroll|exitUntilCollapsed" | |
android:fitsSystemWindows="true" | |
app:contentScrim="?attr/colorPrimary" | |
app:expandedTitleMarginStart="48dp" | |
app:expandedTitleMarginEnd="64dp" | |
app:title="@string/category" | |
app:collapsedTitleGravity="top"> | |
<android.support.v7.widget.Toolbar | |
android:id="@+id/toolbar" | |
android:layout_width="match_parent" | |
android:layout_height="?attr/actionBarSize" | |
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" | |
app:layout_collapseMode="pin" /> | |
</android.support.design.widget.CollapsingToolbarLayout> | |
</android.support.design.widget.AppBarLayout> | |
<android.support.v4.widget.NestedScrollView | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:fillViewport="true" | |
android:layout_margin="@dimen/dimen_8dp" | |
app:layout_behavior="@string/appbar_scrolling_view_behavior"> | |
<LinearLayout | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:orientation="vertical"> | |
<GridView | |
android:id="@+id/categories_list" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:numColumns="3" | |
android:gravity="center" | |
android:layout_gravity="center" | |
android:scrollbars="vertical" | |
android:verticalSpacing="4dp" | |
android:horizontalSpacing="4dp"> | |
</GridView> | |
</LinearLayout> | |
</android.support.v4.widget.NestedScrollView> | |
<android.support.design.widget.FloatingActionButton | |
android:layout_height="wrap_content" | |
android:layout_width="wrap_content" | |
android:layout_margin="@dimen/dimen_16dp" | |
android:src="@drawable/ic_insert_emoticon_black_24dp" | |
app:layout_anchor="@id/appBar" | |
app:layout_anchorGravity="bottom|end" /> | |
</android.support.design.widget.CoordinatorLayout> | |
<!---Individual category layout--> | |
<?xml version="1.0" encoding="utf-8"?> | |
<android.support.constraint.ConstraintLayout | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:app="http://schemas.android.com/apk/res-auto" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content"> | |
<ImageView | |
android:id="@+id/category_image" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
tools:src="@tools:sample/avatars" | |
android:minHeight="@dimen/dimen_200dp" | |
android:minWidth="@dimen/dimen_200dp" | |
android:clickable="true" | |
android:focusable="true" | |
android:foreground="?selectableItemBackgroundBorderless" | |
android:contentDescription="@string/grid_image" /> | |
<TextView | |
android:id="@+id/category_title" | |
android:layout_width="0dp" | |
android:layout_height="wrap_content" | |
android:gravity="center" | |
android:textColor="@android:color/white" | |
android:layout_margin="@dimen/dimen_16dp" | |
android:textAppearance="?android:textAppearanceMedium" | |
app:layout_constraintBottom_toBottomOf="parent" | |
app:layout_constraintEnd_toEndOf="parent" | |
app:layout_constraintStart_toStartOf="parent" | |
app:layout_constraintTop_toTopOf="parent" | |
app:layout_constraintVertical_bias="0.5" | |
tools:text="Category" /> | |
</android.support.constraint.ConstraintLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment