Refactor the BibleViewer to the its own activity package

This commit is contained in:
DjBushido 2014-04-16 13:30:59 -04:00
parent bda928098c
commit e4282229e5
3 changed files with 8 additions and 3 deletions

View File

@ -14,7 +14,7 @@
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="org.bspeice.minimalbible.BibleViewer"
android:name="org.bspeice.minimalbible.activities.viewer.BibleViewer"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

View File

@ -4,7 +4,7 @@
android:id="@+id/drawer_layout"
android:layout_width="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

View File

@ -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.NavigationDrawerFragment;
import org.bspeice.minimalbible.activities.downloader.DownloadActivity;