Skip to content

Commit 1403c16

Browse files
authored
Add files via upload
1 parent aa67b21 commit 1403c16

File tree

4 files changed

+96
-0
lines changed

4 files changed

+96
-0
lines changed

app/src/main/res/layout/items.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
3+
android:layout_width="200dp"
4+
android:layout_height="200dp"
5+
android:layout_margin="10dp"
6+
xmlns:app="http://schemas.android.com/apk/res-auto"
7+
app:cardBackgroundColor="#ffffff">
8+
9+
<LinearLayout
10+
android:layout_width="match_parent"
11+
android:layout_height="match_parent"
12+
android:orientation="horizontal">
13+
14+
<TextView
15+
android:layout_width="match_parent"
16+
android:layout_height="match_parent"
17+
android:text="TODAY"
18+
android:gravity="center"
19+
android:textColor="#000000"
20+
android:id="@+id/text"
21+
android:textSize="20sp"/>
22+
</LinearLayout>
23+
24+
</android.support.v7.widget.CardView>

app/src/main/res/layout/items1.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
3+
android:layout_width="200dp"
4+
android:layout_height="200dp"
5+
android:layout_margin="10dp"
6+
xmlns:app="http://schemas.android.com/apk/res-auto"
7+
app:cardBackgroundColor="#ffffff">
8+
9+
<LinearLayout
10+
android:layout_width="match_parent"
11+
android:layout_height="match_parent"
12+
android:orientation="horizontal">
13+
14+
<TextView
15+
android:layout_width="match_parent"
16+
android:layout_height="match_parent"
17+
android:text="BREAKFAST"
18+
android:gravity="center"
19+
android:textColor="#000000"
20+
android:id="@+id/text1"
21+
android:textSize="20sp"/>
22+
</LinearLayout>
23+
24+
</android.support.v7.widget.CardView>

app/src/main/res/layout/items2.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
3+
android:layout_width="200dp"
4+
android:layout_height="200dp"
5+
android:layout_margin="10dp"
6+
xmlns:app="http://schemas.android.com/apk/res-auto"
7+
app:cardBackgroundColor="#ffffff">
8+
9+
<LinearLayout
10+
android:layout_width="match_parent"
11+
android:layout_height="match_parent"
12+
android:orientation="horizontal">
13+
14+
<ImageView
15+
android:layout_width="match_parent"
16+
android:layout_height="match_parent"
17+
android:src="@drawable/tick"
18+
android:id="@+id/image2"/>
19+
</LinearLayout>
20+
21+
</android.support.v7.widget.CardView>
22+
23+
24+
25+
26+
27+

app/src/main/res/layout/items3.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
3+
android:layout_width="200dp"
4+
android:layout_height="200dp"
5+
android:layout_margin="10dp"
6+
xmlns:app="http://schemas.android.com/apk/res-auto"
7+
app:cardBackgroundColor="#ffffff">
8+
9+
<LinearLayout
10+
android:layout_width="match_parent"
11+
android:layout_height="match_parent"
12+
android:orientation="horizontal">
13+
14+
<ImageView
15+
android:layout_width="match_parent"
16+
android:layout_height="match_parent"
17+
android:src="@drawable/achievements"
18+
android:id="@+id/image3"/>
19+
</LinearLayout>
20+
21+
</android.support.v7.widget.CardView>

0 commit comments

Comments
 (0)