本文整理汇总了Java中com.tencent.connect.auth.QQToken类的典型用法代码示例。如果您正苦于以下问题:Java QQToken类的具体用法?Java QQToken怎么用?Java QQToken使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
QQToken类属于com.tencent.connect.auth包,在下文中一共展示了QQToken类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onCreate
import com.tencent.connect.auth.QQToken; //导入依赖的package包/类
public void onCreate(Bundle bundle) {
super.onCreate(bundle);
requestWindowFeature(1);
setRequestedOrientation(1);
setContentView(a());
this.d = new Handler();
Bundle bundleExtra = getIntent().getBundleExtra(Constants.KEY_PARAMS);
this.r = bundleExtra.getString(SocialConstants.PARAM_AVATAR_URI);
this.c = bundleExtra.getString("return_activity");
String string = bundleExtra.getString("appid");
String string2 = bundleExtra.getString("access_token");
long j = bundleExtra.getLong("expires_in");
String string3 = bundleExtra.getString("openid");
this.n = bundleExtra.getInt("exitAnim");
this.b = new QQToken(string);
this.b.setAccessToken(string2, ((j - System.currentTimeMillis()) / 1000) + "");
this.b.setOpenId(string3);
b();
e();
this.m = System.currentTimeMillis();
a("10653", 0);
}
示例2: PKDialog
import com.tencent.connect.auth.QQToken; //导入依赖的package包/类
public PKDialog(Context context, String str, String str2, IUiListener iUiListener, QQToken qQToken) {
super(context, 16973840);
this.mWeakContext = new WeakReference(context);
this.mUrl = str2;
this.mListener = new OnTimeListener(context, str, str2, qQToken.getAppId(), iUiListener);
this.mHandler = new THandler(this.mListener, context.getMainLooper());
this.listener = iUiListener;
this.mWebviewHeight = Math.round(185.0f * context.getResources().getDisplayMetrics().density);
f.e(TAG, "density=" + context.getResources().getDisplayMetrics().density + "; webviewHeight=" + this.mWebviewHeight);
}
示例3: TDialog
import com.tencent.connect.auth.QQToken; //导入依赖的package包/类
public TDialog(Context context, String str, String str2, IUiListener iUiListener, QQToken qQToken) {
super(context, 16973840);
this.c = new WeakReference(context);
this.e = str2;
this.f = new OnTimeListener(context, str, str2, qQToken.getAppId(), iUiListener);
this.j = new THandler(this.f, context.getMainLooper());
this.g = iUiListener;
this.l = qQToken;
}
示例4: PKDialog
import com.tencent.connect.auth.QQToken; //导入依赖的package包/类
public PKDialog(Context context, String str, String str2, IUiListener iUiListener, QQToken
qQToken) {
super(context, 16973840);
this.mWeakContext = new WeakReference(context);
this.mUrl = str2;
this.mListener = new OnTimeListener(context, str, str2, qQToken.getAppId(), iUiListener);
this.mHandler = new THandler(this.mListener, context.getMainLooper());
this.listener = iUiListener;
this.mWebviewHeight = Math.round(185.0f * context.getResources().getDisplayMetrics()
.density);
f.e(TAG, "density=" + context.getResources().getDisplayMetrics().density + "; " +
"webviewHeight=" + this.mWebviewHeight);
}
示例5: onCreate
import com.tencent.connect.auth.QQToken; //导入依赖的package包/类
public void onCreate(Bundle bundle)
{
super.onCreate(bundle);
requestWindowFeature(1);
setRequestedOrientation(1);
setContentView(a());
d = new Handler();
Bundle bundle1 = getIntent().getBundleExtra("key_params");
r = bundle1.getString("picture");
c = bundle1.getString("return_activity");
String s1 = bundle1.getString("appid");
String s2 = bundle1.getString("access_token");
long l1 = bundle1.getLong("expires_in");
String s3 = bundle1.getString("openid");
n = bundle1.getInt("exitAnim");
b = new QQToken(s1);
b.setAccessToken(s2, (new StringBuilder()).append((l1 - System.currentTimeMillis()) / 1000L).append("").toString());
b.setOpenId(s3);
b();
e();
m = System.currentTimeMillis();
a("10653", 0L);
}
示例6: c
import com.tencent.connect.auth.QQToken; //导入依赖的package包/类
public static void c(Context context, QQToken qqtoken)
{
b(context, qqtoken);
String s = qqtoken.getAppId();
String s1 = (new StringBuilder()).append("Aqc").append(s).toString();
StatConfig.setAutoExceptionCaught(false);
StatConfig.setEnableSmartReporting(true);
StatConfig.setSendPeriodMinutes(1440);
StatConfig.setStatSendStrategy(StatReportStrategy.PERIOD);
StatConfig.setStatReportUrl("http://cgi.connect.qq.com/qqconnectutil/sdk");
try
{
StatService.startStatService(context, s1, "1.0.0");
return;
}
catch (MtaSDkException mtasdkexception)
{
Log.e("DEBUG", "MTA init Failed.");
}
}
示例7: TaskGuide
import com.tencent.connect.auth.QQToken; //导入依赖的package包/类
public TaskGuide(Context context, QQAuth qqauth, QQToken qqtoken)
{
super(context, qqauth, qqtoken);
d = null;
e = null;
g = new Handler(Looper.getMainLooper());
i = com.tencent.open.z.a;
j = com.tencent.open.z.a;
A = 0;
B = 0;
C = 0.0F;
D = new AccelerateInterpolator();
E = false;
a = false;
F = false;
G = false;
L = null;
M = null;
f = (WindowManager)context.getSystemService("window");
d();
}
示例8: getUserInfo
import com.tencent.connect.auth.QQToken; //导入依赖的package包/类
public static void getUserInfo(Activity activity,IUiListener listener) {
if (api == null) {
api = Tencent.createInstance(APP_ID, MainApp.getContext());
}
if(api==null){
return;
}
QQToken token=api.getQQToken();
UserInfo info = new UserInfo(activity, token);
info.getUserInfo(listener);
}
示例9: parseToken
import com.tencent.connect.auth.QQToken; //导入依赖的package包/类
private static QQToken parseToken(String appId, SocialToken socialToken) {
QQToken token = new QQToken(appId);
//3600是随意定义的,不影响token的使用
token.setAccessToken(socialToken.getToken(), "3600");
token.setOpenId(socialToken.getOpenId());
return token;
}
示例10: BaseApi
import com.tencent.connect.auth.QQToken; //导入依赖的package包/类
public BaseApi(QQAuth qQAuth, QQToken qQToken) {
this.mTaskList = null;
this.mActivityIntent = null;
this.mUiListener = null;
this.mQQAuth = qQAuth;
this.mToken = qQToken;
this.mTaskList = new ArrayList();
}
示例11: b
import com.tencent.connect.auth.QQToken; //导入依赖的package包/类
public static void b(Context context, QQToken qQToken) {
try {
if (a(context, qQToken)) {
f.invoke(a, new Object[]{Boolean.valueOf(true)});
return;
}
f.invoke(a, new Object[]{Boolean.valueOf(false)});
} catch (Exception e) {
e.printStackTrace();
}
}
示例12: d
import com.tencent.connect.auth.QQToken; //导入依赖的package包/类
public static void d(Context context, QQToken qQToken) {
if (g) {
b(context, qQToken);
if (qQToken.getOpenId() != null) {
try {
c.invoke(b, new Object[]{context, qQToken.getOpenId()});
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
示例13: a
import com.tencent.connect.auth.QQToken; //导入依赖的package包/类
public static void a(Context context, QQToken qQToken, String str, String... strArr) {
if (g) {
b(context, qQToken);
try {
d.invoke(b, new Object[]{context, str, strArr});
} catch (Exception e) {
e.printStackTrace();
}
}
}
示例14: onDownloadStart
import com.tencent.connect.auth.QQToken; //导入依赖的package包/类
public void onDownloadStart(String str, String str2, String str3, String str4, long j) {
f.b(f.d, "-->(AppbarActivity)onDownloadStart : url = " + str);
try {
this.a.startActivity(new Intent("android.intent.action.VIEW", Uri.parse(str)));
} catch (Exception e) {
f.b(f.d, "-->(AppbarActivity)onDownloadStart : activity aciton_view not found.");
}
QQToken access$500 = this.a.getToken();
if (access$500 != null) {
a.a(access$500.getAppId(), "200", "SDK.APPBAR.HOME ACTION");
}
}
示例15: shareToQQ
import com.tencent.connect.auth.QQToken; //导入依赖的package包/类
public void shareToQQ() {
final QQToken token = getToken();
if (token != null) {
QQShare qQShare = new QQShare(this, token);
Bundle bundle = new Bundle();
bundle.putString("title", this.model.a);
bundle.putString("targetUrl", this.model.d);
bundle.putString("summary", this.model.b);
bundle.putString("imageUrl", this.model.c);
f.b(f.d, "-->(AppbarActivity)shareToQQ : model.mTitle = " + this.model.a);
f.b(f.d, "-->(AppbarActivity)shareToQQ : model.mTargetUrl = " + this.model.d);
f.b(f.d, "-->(AppbarActivity)shareToQQ : model.mDescription = " + this.model.b);
f.b(f.d, "-->(AppbarActivity)shareToQQ : model.mIconUrl = " + this.model.c);
qQShare.shareToQQ(this, bundle, new IUiListener(this) {
final /* synthetic */ AppbarActivity b;
public void onError(UiError uiError) {
f.b(f.d, "-->(AppbarActivity)shareToQQ onError");
this.b.jsBridge.responseShareFail(1);
}
public void onComplete(Object obj) {
f.b(f.d, "-->(AppbarActivity)shareToQQ onComplete");
this.b.jsBridge.responseShare(1);
a.a(token.getAppId(), PLAYER.PLAY, "SDK.APPBAR.HOME.SHARE.QQ");
}
public void onCancel() {
f.b(f.d, "-->(AppbarActivity)shareToQQ onCancel");
this.b.jsBridge.responseShareFail(1);
}
});
a.a(token.getAppId(), "200", "SDK.APPBAR.HOME.SHARE.QQ");
}
}