Back to project page acs-android-sdk.
The source code is released under:
Apache License
If you think the Android project acs-android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * /*w w w . j av a2 s .c o m*/ */ package com.appcelerator.cloud.sdk.oauth2; import android.content.Context; import android.widget.TextView; /** * Developers should implement this interface and customize the dialog for showing * authorization pages from authorization server. * */ public interface DlgCustomizer { public float[] getPortraitDimensions(); public float[] getLandscapeDimensions(); public TextView setUpTitle(Context context); }