【第3天】,学android的第3天,点击按钮添加QQ群

【主要步骤】

  1. 首先去QQ群官网获取加群代码:QQ群官网
    【第3天】,学android的第3天,点击按钮添加QQ群_第1张图片
    2.activity_main.xml文件代码

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="点击加QQ群"
        android:onClick="click"
        
                    

你可能感兴趣的:(android)