forked from willowtreeapps/spruce-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
teddywilson
committed
Jul 10, 2017
1 parent
73618de
commit 511e038
Showing
6 changed files
with
139 additions
and
7 deletions.
There are no files selected for viewing
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
43 changes: 43 additions & 0 deletions
43
app/src/main/java/com/willowtreeapps/spurceexampleapp/util/ColorUtils.java
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
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"); | ||
} | ||
|
||
} |
55 changes: 55 additions & 0 deletions
55
app/src/main/java/com/willowtreeapps/spurceexampleapp/widgets/CardLayout.java
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
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); | ||
} | ||
|
||
} |
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
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> |
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
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