Initial commit
This commit is contained in:
commit
21bfbfb139
520 changed files with 47819 additions and 0 deletions
14
app/src/main/res/menu/anime_menu_detail.xml
Normal file
14
app/src/main/res/menu/anime_menu_detail.xml
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item
|
||||
android:id="@+id/info"
|
||||
android:enabled="true"
|
||||
android:icon="@drawable/ic_round_info_24"
|
||||
android:title="@string/info" />
|
||||
|
||||
<item
|
||||
android:id="@+id/watch"
|
||||
android:enabled="true"
|
||||
android:icon="@drawable/ic_round_movie_filter_24"
|
||||
android:title="@string/watch" />
|
||||
</menu>
|
17
app/src/main/res/menu/bottom_navbar_menu.xml
Normal file
17
app/src/main/res/menu/bottom_navbar_menu.xml
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item
|
||||
android:id="@+id/anime"
|
||||
android:icon="@drawable/ic_round_movie_filter_24"
|
||||
android:title="@string/anime" />
|
||||
|
||||
<item
|
||||
android:id="@+id/home"
|
||||
android:icon="@drawable/ic_round_home_24"
|
||||
android:title="@string/home" />
|
||||
|
||||
<item
|
||||
android:id="@+id/manga"
|
||||
android:icon="@drawable/ic_round_import_contacts_24"
|
||||
android:title="@string/manga"/>
|
||||
</menu>
|
15
app/src/main/res/menu/list_sort_menu.xml
Normal file
15
app/src/main/res/menu/list_sort_menu.xml
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item
|
||||
android:id="@+id/score"
|
||||
android:title="@string/sort_by_score" />
|
||||
<item
|
||||
android:id="@+id/title"
|
||||
android:title="@string/sort_by_title" />
|
||||
<item
|
||||
android:id="@+id/release"
|
||||
android:title="@string/sort_by_release_date" />
|
||||
<item
|
||||
android:id="@+id/updated"
|
||||
android:title="@string/sort_by_last_updated" />
|
||||
</menu>
|
14
app/src/main/res/menu/manga_menu_detail.xml
Normal file
14
app/src/main/res/menu/manga_menu_detail.xml
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item
|
||||
android:id="@+id/info"
|
||||
android:enabled="true"
|
||||
android:icon="@drawable/ic_round_info_24"
|
||||
android:title="@string/info" />
|
||||
|
||||
<item
|
||||
android:id="@+id/read"
|
||||
android:enabled="true"
|
||||
android:icon="@drawable/ic_round_import_contacts_24"
|
||||
android:title="@string/read" />
|
||||
</menu>
|
9
app/src/main/res/menu/menu_media.xml
Normal file
9
app/src/main/res/menu/menu_media.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<menu 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"
|
||||
tools:context="ani.dantotsu.media.MediaDetailsActivity" >
|
||||
<item android:id="@+id/action_settings"
|
||||
android:title="@string/action_settings"
|
||||
android:orderInCategory="100"
|
||||
app:showAsAction="never" />
|
||||
</menu>
|
Loading…
Add table
Add a link
Reference in a new issue