mirror of
https://github.com/MinimalBible/MinimalBible-Legacy
synced 2024-11-13 19:48:38 -05:00
Refactor the BibleViewer to the its own activity package
This commit is contained in:
parent
bda928098c
commit
e4282229e5
@ -14,7 +14,7 @@
|
|||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:theme="@style/AppTheme" >
|
android:theme="@style/AppTheme" >
|
||||||
<activity
|
<activity
|
||||||
android:name="org.bspeice.minimalbible.BibleViewer"
|
android:name="org.bspeice.minimalbible.activities.viewer.BibleViewer"
|
||||||
android:label="@string/app_name" >
|
android:label="@string/app_name" >
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
android:id="@+id/drawer_layout"
|
android:id="@+id/drawer_layout"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
tools:context="org.bspeice.minimalbible.BibleViewer" >
|
tools:context="org.bspeice.minimalbible.activities.viewer.BibleViewer" >
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
As the main content view, the view below consumes the entire
|
As the main content view, the view below consumes the entire
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
package org.bspeice.minimalbible;
|
package org.bspeice.minimalbible.activities.viewer;
|
||||||
|
|
||||||
|
import org.bspeice.minimalbible.R;
|
||||||
|
import org.bspeice.minimalbible.R.id;
|
||||||
|
import org.bspeice.minimalbible.R.layout;
|
||||||
|
import org.bspeice.minimalbible.R.menu;
|
||||||
|
import org.bspeice.minimalbible.R.string;
|
||||||
import org.bspeice.minimalbible.activities.BaseActivity;
|
import org.bspeice.minimalbible.activities.BaseActivity;
|
||||||
import org.bspeice.minimalbible.activities.NavigationDrawerFragment;
|
import org.bspeice.minimalbible.activities.NavigationDrawerFragment;
|
||||||
import org.bspeice.minimalbible.activities.downloader.DownloadActivity;
|
import org.bspeice.minimalbible.activities.downloader.DownloadActivity;
|
Loading…
Reference in New Issue
Block a user