Remove folders.json
This commit is contained in:
parent
91dcf841dc
commit
b586e6e18b
2 changed files with 2 additions and 51 deletions
|
@ -1,48 +0,0 @@
|
|||
{
|
||||
"data": [
|
||||
{
|
||||
"name": "Inbox",
|
||||
"icon": "?attr/iconFolderInbox"
|
||||
},
|
||||
{
|
||||
"name": "Outbox",
|
||||
"icon": "?attr/iconFolderOutbox"
|
||||
},
|
||||
{
|
||||
"name": "Archive",
|
||||
"icon": "?attr/iconFolderArchive"
|
||||
},
|
||||
{
|
||||
"name": "Drafts",
|
||||
"icon": "?attr/iconFolderDrafts"
|
||||
},
|
||||
{
|
||||
"name": "Sent",
|
||||
"icon": "?attr/iconFolderSent"
|
||||
},
|
||||
{
|
||||
"name": "Spam",
|
||||
"icon": "?attr/iconFolderSpam"
|
||||
},
|
||||
{
|
||||
"name": "Trash",
|
||||
"icon": "?attr/iconFolderTrash"
|
||||
},
|
||||
{
|
||||
"name": "Regular folder",
|
||||
"icon": "?attr/iconFolder"
|
||||
},
|
||||
{
|
||||
"name": "Another folder",
|
||||
"icon": "?attr/iconFolder"
|
||||
},
|
||||
{
|
||||
"name": "And yet another folder",
|
||||
"icon": "?attr/iconFolder"
|
||||
},
|
||||
{
|
||||
"name": "Folder",
|
||||
"icon": "?attr/iconFolder"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,6 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout 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:id="@+id/folder_list_item_layout"
|
||||
android:layout_width="match_parent"
|
||||
|
@ -18,7 +17,7 @@
|
|||
android:layout_height="24dp"
|
||||
android:layout_marginStart="16dp"
|
||||
android:layout_marginEnd="32dp"
|
||||
tools:srcCompat="@sample/folders.json/data/icon" />
|
||||
tools:srcCompat="@drawable/ic_inbox"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/folder_name"
|
||||
|
@ -30,6 +29,6 @@
|
|||
android:paddingBottom="12dp"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:textColor="?android:attr/textColorPrimary"
|
||||
tools:text="@sample/folders.json/data/name" />
|
||||
tools:text="Inbox" />
|
||||
|
||||
</LinearLayout>
|
||||
|
|
Loading…
Reference in a new issue