Skip to content

Commit 086ce98

Browse files
committedOct 27, 2021
Add sample data and various tools attributes to layouts
1 parent 7209dc0 commit 086ce98

File tree

58 files changed

+290
-104
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+290
-104
lines changed
 

‎app/k9mail/src/main/res/layout/activity_unread_widget_configuration.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:tools="http://schemas.android.com/tools"
34
android:layout_width="match_parent"
45
android:layout_height="match_parent"
5-
android:orientation="vertical">
6+
android:orientation="vertical"
7+
tools:context=".widget.unread.UnreadWidgetConfigurationActivity">
68

79
<include layout="@layout/toolbar" />
810

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"data": [
3+
{
4+
"name": "Personal",
5+
"email": "user@domain.example",
6+
"color": "#FF1976D2"
7+
},
8+
{
9+
"name": "Work",
10+
"email": "firstname.lastname@work.example",
11+
"color": "#FFE91E63"
12+
},
13+
{
14+
"name": "Club",
15+
"email": "name@sportsclub.example",
16+
"color": "#FFFFB300"
17+
}
18+
]
19+
}

0 commit comments

Comments
 (0)
Please sign in to comment.