一键加群android代码如何使用!

http://qun.qq.com/join.html

在腾讯意见加群网页中生成要用到的一键加群的代码!

打开eclipse;创建工程:


布局代码:activity_main.xml文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@drawable/beijing" >
    <TextView 
        android:id="@+id/jumptv"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="请叫我张大人"
        android:textColor="#f65"
        android:textSize="30dp"
        android:gravity="center"/>
    <Button 
        android:id="@+id/bt"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="加群点这里"
        android:textColor="#f65"
        android:textSize="30dp"
        android:onClick="joinQQGroup"/>
    

</LinearLayout>


主java文件MainActivity.java 文件:

package com.example.qqjunp_1_21;

import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class MainActivity extends Activity {
	private Button bt;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		bt=(Button) findViewById(R.id.bt);
		bt.setOnClickListener(new OnClickListener() {
			
			@Override
			public void onClick(View arg0) {
				// TODO Auto-generated method stub
				/****************
				*
				* 发起添加群流程。群号:燃烧吧,青春!(521197317) 的 key 为: bESwXmuP5CGxEhRs4-TFuIVKVMOBkDEI
				* 调用 joinQQGroup(bESwXmuP5CGxEhRs4-TFuIVKVMOBkDEI) 即可发起手Q客户端申请加群 燃烧吧,青春!(521197317)
				*
				* @param key 由官网生成的key
				* @return 返回true表示呼起手Q成功,返回fals表示呼起失败
				******************/
					String key="bESwXmuP5CGxEhRs4-TFuIVKVMOBkDEI";
				    Intent intent = new Intent();
				    intent.setData(Uri.parse("mqqopensdkapi://bizAgent/qm/qr?url=http%3A%2F%2Fqm.qq.com%2Fcgi-bin%2Fqm%2Fqr%3Ffrom%3Dapp%26p%3Dandroid%26k%3D" + key));
				   // 此Flag可根据具体产品需要自定义,如设置,则在加群界面按返回,返回手Q主界面,不设置,按返回会返回到呼起产品界面    //intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
				    try {
				        startActivity(intent);
				        return ;
				    } catch (Exception e) {
				        // 未安装手Q或安装的版本不支持
				        return ;
				    }
				}

			
		});
	}

}



项目源码:项目源码


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值