第三周作业
Posted 计算机1901王怡菲
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第三周作业相关的知识,希望对你有一定的参考价值。
1.创建3个界面
第一个界面有3个button
<?xml version="1.0" encoding="utf-8"?> <androidx.appcompat.widget.LinearLayoutCompat 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:id="@+id/but1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="50dp" android:layout_marginTop="50dp" android:text="按钮1" /> <Button android:id="@+id/but2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="50dp" android:layout_marginTop="50dp" android:text="按钮2" android:layout_below="@+id/but1" /> <Button android:id="@+id/but3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/but2" android:layout_marginLeft="50dp" android:layout_marginTop="50dp" android:text="按钮3" /> </androidx.appcompat.widget.LinearLayoutCompat>
第二个界面有单选按钮 学历:初中 高中 专科 本科
<?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"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#000000" android:text="你的学历是" android:textSize="35sp" android:layout_margin="10dp"/> <RadioGroup android:layout_width="wrap_content" android:layout_height="wrap_content"> </RadioGroup> <RadioButton android:id="@+id/rb1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="100dp" android:text="初中" android:textSize="30dp" android:textColor="#466E8D" /> <RadioButton android:id="@+id/rb2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="60dp" android:layout_below="@id/rb1" android:text="高中" android:textSize="30dp" android:textColor="#466E8D" /> <RadioButton android:id="@+id/rb3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="60dp" android:layout_below="@id/rb2" android:text="专科" android:textSize="30dp" android:textColor="#466E8D" /> <RadioButton android:id="@+id/rb4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="60dp" android:layout_below="@id/rb3" android:text="本科" android:textSize="30dp" android:textColor="#466E8D" /> </RelativeLayout>
第三个界面有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"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="你学过哪些课程?" android:textColor="#000000" android:textSize="35sp" android:layout_marginTop="10dp" android:layout_marginLeft="10dp"/> <CheckBox android:id="@+id/cb1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="100dp" android:text="JAVA" android:textColor="#496F8D" android:textSize="30dp"/> <CheckBox android:id="@+id/cb2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="30dp" android:text="IOS" android:textColor="#496F8D" android:layout_below="@id/cb1" android:textSize="30dp"/> <CheckBox android:id="@+id/cb3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="30dp" android:text="Android" android:textColor="#496F8D" android:layout_below="@id/cb2" android:textSize="30dp"/> <CheckBox android:id="@+id/cb4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="30dp" android:text="Html" android:textColor="#496F8D" android:layout_below="@id/cb3" android:textSize="30dp"/> <CheckBox android:id="@+id/cb5" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="30dp" android:text="Jsp" android:textColor="#496F8D" android:layout_below="@id/cb4" android:textSize="30dp"/> </RelativeLayout>
2.在界面1上设置按钮点击事件
按钮1用onclick方式
按钮2和按钮3用监听方式
点击后用Toast弹出 按钮xxx被点击。
<?xml version="1.0" encoding="utf-8"?> <androidx.appcompat.widget.LinearLayoutCompat 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:id="@+id/but1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="50dp" android:layout_marginTop="50dp" android:text="按钮1" /> <Button android:id="@+id/but2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="50dp" android:layout_marginTop="50dp" android:text="按钮2" android:layout_below="@+id/but1" /> <Button android:id="@+id/but3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/but2" android:layout_marginLeft="50dp" android:layout_marginTop="50dp" android:text="按钮3" /> </androidx.appcompat.widget.LinearLayoutCompat>
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 but2; private Button but3; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); but2=findViewById(R.id.but2); but2.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Toast.makeText(MainActivity.this,"按钮2被点击", Toast.LENGTH_LONG).show(); } }); but3=findViewById(R.id.but3); but3.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Toast.makeText(MainActivity.this,"按钮3被点击", Toast.LENGTH_SHORT).show(); } }); } public void but1(View view){ Toast.makeText(this,"按钮1被点击",Toast.LENGTH_LONG).show(); } }
3.设计布局界面
天赐之尤 8:42:22 <?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"> <ImageView android:id="@+id/iv1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/touxiang" android:layout_centerHorizontal="true" android:layout_marginTop="70dp"/> <EditText android:id="@+id/et1" android:layout_width="300dp" android:layout_height="wrap_content" android:layout_below="@+id/iv1" android:hint="请输入手机号/邮箱" android:layout_centerHorizontal="true" android:layout_marginTop="40dp" android:paddingLeft="80dp"/> <EditText android:id="@+id/et2" android:layout_width="300dp" android:layout_height="wrap_content" android:layout_below="@+id/et1" android:hint="请输入密码" android:layout_centerHorizontal="true" android:layout_marginTop="40dp" android:paddingLeft="100dp" android:drawableRight="@drawable/yanjing" android:paddingRight="2dp" /> <Button android:id="@+id/btn1" android:layout_width="300dp" android:layout_height="wrap_content" android:layout_below="@id/et2" android:layout_centerHorizontal="true" android:layout_marginTop="30dp" android:text="登录" android:textColor="#E7E6E6" android:textStyle="bold" android:background="@drawable/glg_2" /> <Button android:id="@+id/btn2" android:layout_width="300dp" android:layout_height="wrap_content" android:layout_below="@id/btn1" android:layout_centerHorizontal="true" android:layout_marginTop="30dp" android:text="不注册,跳过登陆" android:background="@drawable/glg_1" android:textStyle="bold" android:textColor="#FFFFFF" /> <TextView android:id="@+id/tv1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@id/btn2" android:text="注册账号" android:layout_marginLeft="60dp" android:layout_marginTop="10dp"/> <TextView android:id="@+id/tv2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@id/btn2" android:text="忘记密码" android:layout_marginLeft="300dp" android:layout_marginTop="10dp"/> <ImageView android:id="@+id/ivw1" android:layout_width="40dp" android:layout_height="40dp" android:layout_below="@id/tv1" android:layout_marginLeft="100dp" android:layout_marginTop="50dp" android:src="@drawable/wexin" /> <ImageView android:id="@+id/ivw3" android:layout_width="40dp" android:layout_height="40dp" android:layout_below="@id/tv1" android:layout_marginLeft="50dp" android:layout_marginTop="50dp" android:layout_toRightOf="@+id/ivw1" android:src="@drawable/pingguo" /> <ImageView android:id="@+id/ivw2" android:layout_width="40dp" android:layout_height="40dp" android:layout_below="@id/tvw1" android:layout_marginLeft="50dp" android:layout_marginTop="50dp" android:layout_toRightOf="@+id/ivw3" android:src="@drawable/qq" /> 天赐之尤 8:42:46 <CheckBox android:id="@+id/cb1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="已阅读并同意" android:textColor="#EB2C2A2A" android:layout_below="@id/ivw1" android:layout_marginLeft="60dp" android:layout_marginTop="45dp" /> <TextView android:id="@+id/tvw1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="《用户协议》" android:textStyle="bold" android:textColor="#F70505" android:layout_below="@id/ivw1" android:layout_toRightOf="@id/cb1" android:layout_marginTop="50dp" /> <TextView android:id="@+id/tvw2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="和" android:textStyle="bold" android:textColor="#EB2C2A2A" android:layout_below="@id/ivw1" android:layout_toRightOf="@id/tvw1" android:layout_marginTop="50dp" /> <TextView android:id="@+id/tvw3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="《隐私政策》" android:textStyle="bold" android:textColor="#F70505" android:layout_below="@id/ivw1" android:layout_toRightOf="@id/tvw2" android:layout_marginTop="50dp" /> </RelativeLayout>
以上是关于第三周作业的主要内容,如果未能解决你的问题,请参考以下文章