Skip to content

Commit

Permalink
made card layout
Browse files Browse the repository at this point in the history
  • Loading branch information
teddywilson committed Jul 10, 2017
1 parent 73618de commit 511e038
Show file tree
Hide file tree
Showing 6 changed files with 139 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.support.v4.content.ContextCompat;
import android.util.TypedValue;
import android.view.LayoutInflater;
import android.view.View;
Expand All @@ -36,6 +35,8 @@
import android.widget.GridLayout;

import com.willowtreeapps.spurceexampleapp.R;
import com.willowtreeapps.spurceexampleapp.util.ColorUtils;
import com.willowtreeapps.spurceexampleapp.widgets.CardLayout;

import java.util.ArrayList;
import java.util.List;
Expand All @@ -61,8 +62,7 @@ public View onCreateView(LayoutInflater inflater, ViewGroup container, @Nullable
final int CHILD_VIEW_COUNT = parent.getColumnCount() * parent.getRowCount();

for (int i = 0; i < CHILD_VIEW_COUNT; i++) {
View childView = new View(getContext());
childView.setBackgroundColor(ContextCompat.getColor(getContext(), R.color.spruceViewColor));
CardLayout childView = new CardLayout(getContext());
childView.setAlpha(0F);
parent.addView(childView);
children.add(childView);
Expand All @@ -72,7 +72,7 @@ public View onCreateView(LayoutInflater inflater, ViewGroup container, @Nullable
@Override
public void onGlobalLayout() {
Resources res = getResources();
int tileMargins = Math.round(TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 2, res.getDisplayMetrics()));
int tileMargins = Math.round(TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 4, res.getDisplayMetrics()));
final int childWidth = parent.getWidth() / parent.getColumnCount() - (tileMargins * 2);
final int childHeight = parent.getHeight() / parent.getRowCount() - (tileMargins * 2);

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
package com.willowtreeapps.spurceexampleapp.util;

import android.content.Context;
import android.support.v4.content.ContextCompat;

import com.willowtreeapps.spurceexampleapp.R;

import java.util.Random;

/**
* Created by teddywilson on 7/10/17.
*/

public class ColorUtils {

public static final int ICON_COLOR_COUNT = 6;

public static int randomIconColor(Context context) {
int val = (int) (Math.random() * 5);
switch (val) {
case 0:
return ContextCompat.getColor(context, R.color.icon_color_1);

case 1:
return ContextCompat.getColor(context, R.color.icon_color_2);

case 2:
return ContextCompat.getColor(context, R.color.icon_color_3);

case 3:
return ContextCompat.getColor(context, R.color.icon_color_4);

case 4:
return ContextCompat.getColor(context, R.color.icon_color_5);

case 5:
return ContextCompat.getColor(context, R.color.icon_color_6);

}
throw new RuntimeException("Invalid color value");
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
* Spruce
*
* Copyright (c) 2017 WillowTree, Inc.
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
*/

package com.willowtreeapps.spurceexampleapp.widgets;

import android.content.Context;
import android.support.annotation.Nullable;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.widget.LinearLayout;

import com.willowtreeapps.spurceexampleapp.R;

public class CardLayout extends LinearLayout {

public CardLayout(Context context) {
super(context);
init();
}

public CardLayout(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
init();
}

public CardLayout(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init();
}

private void init() {
LayoutInflater inflater = LayoutInflater.from(getContext());
inflater.inflate(R.layout.view_card, this, true);
}

}
24 changes: 24 additions & 0 deletions app/src/main/res/layout/view_card.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp"
android:background="@color/white">

<View
android:layout_width="match_parent"
android:layout_height="10dp"
android:background="@color/fake_paragraphs"
android:layout_alignParentBottom="true"
android:layout_marginTop="10dp"
android:id="@+id/fake_paragraph"
/>

<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/fake_paragraph"
android:background="@color/spruceViewColor"
/>

</RelativeLayout>
7 changes: 4 additions & 3 deletions app/src/main/res/layout/view_fragment.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,16 @@
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:layout_marginTop="4dp"
android:layout_weight="9.5">
android:layout_weight="9.5"
android:background="@color/recycler_background">

<GridLayout
android:id="@+id/view_group_to_animate"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="true"
android:columnCount="11"
android:rowCount="11"/>
android:columnCount="4"
android:rowCount="6"/>

</FrameLayout>

Expand Down
9 changes: 9 additions & 0 deletions app/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,13 @@
<color name="recycler_background">#F8F8F9</color>
<color name="fake_paragraphs">#D9E1E2</color>
<color name="square_background">#DBE9F9</color>

<!-- Dev -->
<color name="icon_color_1">#abe8dc</color>
<color name="icon_color_2">#b8dcf2</color>
<color name="icon_color_3">#f7c2ba</color>
<color name="icon_color_4">#f5d1ad</color>
<color name="icon_color_5">#faeba6</color>
<color name="icon_color_6">#b5edcc</color>

</resources>

0 comments on commit 511e038

Please sign in to comment.