Jump to content

MLee GMail

Level 1
  • Posts

    2
  • Joined

  • Last visited

Posts posted by MLee GMail

  1. I'm still in the process of acquiring an android phone, so I'm doing the testing in an Android Studio emulator.

    The implementation below is not working (It is not opening the application). I wonder if this is because the testing is being done against an emulator?

    Intent intent = EvernoteIntent.viewNote().setNoteGuid(guid).setFullScreen(false).create();
    activity.startActivityFromFragment(this, intent, 3);

    I have also configured the AndroidManifest.xml with the following:

    <activity
        android:name="com.companyA.activity.FarmingActivity"
        android:configChanges="screenSize|orientation"
        android:label="@string/title_activity_farming"
    
        android:windowSoftInputMode="stateAlwaysHidden|adjustUnspecified"
        android:exported='true'>
        <intent-filter>
            <action android:name="com.evernote.action.VIEW_NOTE" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
×
×
  • Create New...