1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-04 18:29:23 +02:00

CancelActivity (in progress)

This commit is contained in:
Nikolay Pultsin 2011-01-29 18:58:53 +00:00
parent bf4a642f14
commit d6e7d9e3a0
4 changed files with 33 additions and 2 deletions

View file

@ -55,6 +55,7 @@
</intent-filter>
<meta-data android:name="android.app.searchable" android:resource="@xml/searchable" />
</activity>
<activity android:name="org.geometerplus.android.fbreader.CancelActivity" android:theme="@android:style/Theme.Dialog" android:configChanges="orientation|keyboardHidden"/>
<activity android:name="org.geometerplus.android.fbreader.image.ImageViewActivity" android:process=":imageView" android:configChanges="orientation|keyboardHidden"/>
<activity android:name="org.geometerplus.android.fbreader.BookInfoActivity" android:configChanges="orientation|keyboardHidden" android:process=":library"/>
<service android:name="org.geometerplus.android.fbreader.library.InitializationService" android:process=":library" />

View file

@ -19,6 +19,8 @@
package org.geometerplus.android.fbreader;
import android.content.Intent;
import org.geometerplus.fbreader.fbreader.FBAction;
import org.geometerplus.fbreader.fbreader.FBReaderApp;
@ -34,7 +36,10 @@ class CancelAction extends FBAction {
if (Reader.getCurrentView() != Reader.BookTextView) {
Reader.showBookTextView();
} else {
Reader.closeWindow();
final Intent intent = new Intent();
intent.setClass(myBaseActivity, CancelActivity.class);
myBaseActivity.startActivity(intent);
//Reader.closeWindow();
}
}
}

View file

@ -0,0 +1,25 @@
/*
* Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
package org.geometerplus.android.fbreader;
import android.app.Activity;
public class CancelActivity extends Activity {
}

View file

@ -66,7 +66,7 @@ class ProcessHyperlinkAction extends FBAction {
final String uriString = ((ZLTextImageRegion)region).ImageElement.URI;
if (uriString != null) {
try {
final Intent intent = new Intent(Intent.ACTION_VIEW);
final Intent intent = new Intent();
intent.setClass(myBaseActivity, ImageViewActivity.class);
intent.setData(Uri.parse(uriString));
myBaseActivity.startActivity(intent);