Ignore:
Timestamp:
07/02/10 21:34:52 (14 years ago)
Author:
lukacu
Branch:
default
Convert:
svn:f819dc9c-ca78-df11-852c-0018fe7759ca/trunk@7
Message:

Fix for #15.

Location:
android/src/org/webstrips/android
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • android/src/org/webstrips/android/ComicListActivity.java

    r2 r6  
    239239                    + "/anchor"); 
    240240 
    241             intent = new Intent("COMIC", uri, this, ComicViewerActivity.class); 
     241            intent = new Intent("org.android.VIEW", uri, this, ComicViewerActivity.class); 
    242242 
    243243            startActivity(intent); 
    244244            break; 
    245245        case R.id.list_info: 
    246             /*intent = new Intent("INFO", Uri.parse("comic://" + comic.getComicIdentifier()), this, ComicViewerActivity.class); 
    247  
    248             startActivity(intent);*/ 
     246            intent = new Intent("org.android.INFO", Uri.parse("comic://" + comic.getComicIdentifier()), this, ComicDetailsActivity.class); 
     247 
     248            startActivity(intent); 
    249249            break; 
    250250        case R.id.list_webpage: 
Note: See TracChangeset for help on using the changeset viewer.