Android第三周作业

1.创建3个界面

第一个界面有3个button

第二个界面有单选按钮 学历:初中 高中 专科 本科

第三个界面有5个复选框  学过哪些课程

Java

Ios

Android

Html

Jsp

把第二个界面设置为启动界面

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
    tools:context=".MainActivity"
    android:orientation="vertical">

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="150dp"
        android:layout_marginTop="10dp"
        android:text="按钮1"
        android:onClick="button1"
        />
    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="150dp"
        android:layout_below="@+id/button1"
        android:layout_marginTop="10dp"
        android:text="按钮2"
        />
    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="150dp"
        android:layout_below="@+id/button2"
        android:layout_marginTop="10dp"
        android:text="按钮3"
        />
</RelativeLayout>

 

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
    tools:context=".Main2Activity"
    android:orientation="vertical">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="你的学历是"
        android:textSize="30sp"

        android:layout_marginLeft="5dp"/>

    <RadioGroup
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
        <RadioButton
            android:id="@+id/rb1"
            android:layout_marginTop="50dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="20dp"
            android:text="初中"/>
        <RadioButton
            android:id="@+id/rb2"
            android:layout_marginTop="20dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="20dp"
            android:layout_below="@+id/rb1"
            android:text="高中"/>
        <RadioButton
            android:id="@+id/rb3"
            android:layout_marginTop="20dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="20dp"
            android:layout_below="@+id/rb2"
            android:text="专科"/>
        <RadioButton
            android:id="@+id/rb4"
            android:layout_marginTop="20dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="20dp"
            android:layout_below="@+id/rb3"
            android:text="本科"/>

    </RadioGroup>

</RelativeLayout>

 

 

 

 

 

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
    tools:context=".Main3Activity"
    android:orientation="vertical">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="你学过的科目"
        android:textSize="30sp"/>
    <CheckBox
        android:id="@+id/c1"
        android:layout_marginTop="50dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20dp"
        android:text="Java"
        />
    <CheckBox
        android:id="@+id/c2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20dp"
        android:layout_below="@+id/c1"
        android:text="Ios"
        />
    <CheckBox
        android:id="@+id/c3"
        android:layout_below="@+id/c2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20dp"
        android:text="Android"
        />
    <CheckBox
        android:id="@+id/c4"
        android:layout_below="@+id/c3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20dp"
        android:text="Html"
        />
    <CheckBox
        android:id="@+id/c5"
        android:layout_below="@+id/c4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20dp"
        android:text="Jsp"
        />


</RelativeLayout>

 

2.在界面1上设置按钮点击事件

按钮1用onclick方式

按钮2和按钮3用监听方式

点击后用Toast弹出 按钮xxx被点击。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
    tools:context=".MainActivity"
    android:orientation="vertical">

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="150dp"
        android:layout_marginTop="10dp"
        android:text="按钮1"
        android:onClick="button1"
        />
    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="150dp"
        android:layout_below="@+id/button1"
        android:layout_marginTop="10dp"
        android:text="按钮2"
        />
    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="150dp"
        android:layout_below="@+id/button2"
        android:layout_marginTop="10dp"
        android:text="按钮3"
        />
</RelativeLayout>
package com.example.myapplication;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {

    private Button button2;
    private Button button3;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        button2=findViewById(R.id.button2);
        button2.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Toast.makeText(MainActivity.this,"按钮2被点击",Toast.LENGTH_LONG).show();
            }
        });

        button3=findViewById(R.id.button3);
        button3.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Toast.makeText(MainActivity.this,"按钮3被点击",Toast.LENGTH_LONG).show();
            }
        });
    }
    public void button1(View view){
        Toast.makeText(this,"按钮1被点击",Toast.LENGTH_LONG).show();
    }
}

 

 3.设计布局界面(详见QQ群)

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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">

    <ImageView
        android:id="@+id/iv_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/xbdy"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="50dp"/>
    <EditText
        android:id="@+id/et_1"
        android:layout_width="300dp"
        android:layout_height="wrap_content"
        android:hint="请输入手机号/邮箱"
        android:layout_below="@id/iv_1"
        android:layout_centerHorizontal="true"
        android:paddingLeft="90dp"
        android:layout_marginTop="40dp"/>
    <EditText
        android:id="@+id/et_2"
        android:layout_width="300dp"
        android:layout_height="wrap_content"
        android:hint="请输入密码"
        android:layout_below="@id/et_1"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="40dp"
        android:paddingLeft="90dp"
        android:drawableRight="@drawable/mima"/>
    <Button
        android:id="@+id/bt_1"
        android:layout_width="300dp"
        android:layout_height="wrap_content"
        android:text="登录"
        android:textColor="#F6F6F8"
        android:layout_centerHorizontal="true"
        android:layout_below="@id/et_2"
        android:textStyle="bold"
        android:background="@drawable/btn_1"
        android:layout_marginTop="20dp"/>
    <Button
        android:id="@+id/bt_2"
        android:layout_width="300dp"
        android:layout_height="wrap_content"
        android:text="不注册,跳过登录"
        android:textColor="#F6F6F8"
        android:layout_centerHorizontal="true"
        android:layout_below="@id/bt_1"
        android:textStyle="bold"
        android:background="@drawable/btn_1"
        android:layout_marginTop="20dp"/>
    <TextView
        android:id="@+id/tv_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="注册账号"
        android:layout_below="@id/bt_2"
        android:layout_marginLeft="60dp"
        android:layout_marginTop="20dp"/>
    <TextView
        android:id="@+id/tv_2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="忘记密码"
        android:layout_below="@id/bt_2"
        android:layout_marginLeft="300dp"
        android:layout_marginTop="20dp"/>
    <ImageView
        android:id="@+id/ig_1"
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:layout_below="@id/tv_1"
        android:background="@drawable/weixin"
        android:layout_marginLeft="60dp"
        android:layout_marginTop="20dp"/>
    <ImageView
        android:id="@+id/ig_2"
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:layout_below="@id/tv_1"
        android:background="@drawable/apple"
        android:layout_marginLeft="60dp"
        android:layout_marginTop="20dp"
        android:layout_toRightOf="@id/ig_1"/>
    <ImageView
        android:id="@+id/ig_3"
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:layout_below="@id/tv_1"
        android:background="@drawable/qq"
        android:layout_marginLeft="60dp"
        android:layout_marginTop="20sp"
        android:layout_toRightOf="@id/ig_2"/>
    <CheckBox
        android:id="@+id/ck_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="已阅读并同意"
        android:layout_below="@id/ig_1"
        android:layout_marginTop="30dp"
        android:layout_marginLeft="60dp"/>
    <TextView
        android:id="@+id/tv_3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="《用户协议》"
        android:textColor="#E20707"
        android:layout_below="@id/ig_1"
        android:textStyle="bold"
        android:layout_toRightOf="@id/ck_1"
        android:layout_marginTop="37dp"/>
    <TextView
        android:id="@+id/tv_4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="和"
        android:layout_below="@id/ig_1"
        android:layout_toRightOf="@id/tv_3"
        android:layout_marginTop="37dp"/>
    <TextView
        android:id="@+id/tv_5"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="《隐私政策》"
        android:textColor="#E20707"
        android:layout_below="@id/ig_1"
        android:textStyle="bold"
        android:layout_toRightOf="@id/tv_4"
        android:layout_marginTop="37dp"/>

</RelativeLayout>

 

 

 

 

posted @ 2021-09-05 15:35  Wowbubble  阅读(79)  评论(0编辑  收藏  举报