Accela SDK for Android  V3.0
 All Classes Functions Variables Pages
com.accela.mobile.AuthorizationActivity Class Reference
Inheritance diagram for com.accela.mobile.AuthorizationActivity:

Public Member Functions

void onCreate (Bundle savedInstanceState)
 

Static Public Attributes

static AccelaMobile accelaMobile
 

Protected Member Functions

void onStart ()
 
void dismissAMLoginDialogWrapperIfExists ()
 

Detailed Description

 Accela Amobile
 File: AuthorizationActivity.java
 Accela, Inc.
 Copyright (C): 2013
 Description:
 The activity which presents the authorization web view, handle the data returned from the authorization web view.
 Notes:
 This activity must be declared in your Android project's AndroidManifest.xml file because it is required in user authorization.
 And the value of android:scheme should be assigned to the urlSchema property when AccelaMobile class is initialized.
 Here is the complete content of the activity definition which should be added in AndroidManifest.xml file.
        <activity android:name="com.accela.mobile.AuthorizationActivity" android:windowSoftInputMode="stateHidden" > 
          <intent-filter>
              <action android:name="android.intent.action.VIEW"></action>
                        <category android:name="android.intent.category.DEFAULT"></category>
                        <category android:name="android.intent.category.BROWSABLE"></category>
                        <data android:scheme="amtest" android:host="authorize"></data>                          
          </intent-filter>            
        </activity>
 Revision History

   @since 3.0
 

Member Data Documentation

AccelaMobile com.accela.mobile.AuthorizationActivity.accelaMobile
static

The static AccelaMobile instance binded to the current activity.

Since
3.0

The documentation for this class was generated from the following file: