我有同样的要求,我做了两件事。
首先 ,我使用我自己的 WebView 加载不同的 URL 以进行身份验证和显示配置文件。我WebView
使用public static
默认浏览器将调用重定向到我自己的 Activity 中的 WebView。
其次,我已经设置webview.getSettings().setAppCacheEnabled(true);
好了,现在它在查看个人资料时不再要求登录。
singleInstace
我已经在 Manifest.xml 文件中声明了我的活动。
更新:
我在我的活动中使用 WebView 的方式。
public static WebView WV = null;
String uri;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
tv = (TextView) findViewById(R.id.tv);
if (WV == null) {
WV = (WebView) findViewById(R.id.webView1);
WV.getSettings().setJavaScriptEnabled(true);
WV.getSettings().setAppCacheEnabled(true); // the important change
WV.getSettings().setSupportZoom(true);
WV.getSettings().setBuiltInZoomControls(true);
}
final SharedPreferences pref = getSharedPreferences(OAUTH_PREF,
MODE_PRIVATE);
final String token = pref.getString(PREF_TOKEN, null);
final String tokenSecret = pref.getString(PREF_TOKENSECRET, null);
if (token == null || tokenSecret == null) {
startAutheniticate();
} else {
showCurrentUser(new LinkedInAccessToken(token, tokenSecret));
}
}
void startAutheniticate() {
final LinkedInRequestToken liToken = oAuthService
.getOAuthRequestToken(OAUTH_CALLBACK_URL);
uri = liToken.getAuthorizationUrl();
getSharedPreferences(OAUTH_PREF, MODE_PRIVATE).edit()
.putString(PREF_REQTOKENSECRET, liToken.getTokenSecret())
.commit();
WV.loadUrl(uri);
}
void showCurrentUser(final LinkedInAccessToken accessToken) {
// code to get Profile object using Linkedin-J API
//which is already available on the API site as Example
WV.loadUrl(profile.getSiteStandardProfileRequest().getUrl());
}