本次作业主要是基于上一次界面设计的基础上,实现一个界面的跳转。
成果:
实现:
这次实现主要是创建一个登录界面MAIN2,然后再MAIN1中添加一个button,通过intent来实现点击跳转
核心代码:
button=(Button)findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View v) {
Intent intent=new Intent(MainActivity.this,MainActivity2.class);
startActivity(intent);
}
});
initFragment();
}
?其中Intent(MainActivity.this,MainActivity2.class)这段代码主要实现界面跳转,intent宛如一个桥梁中介,连接起了两个界面。
接下来是设计Main2.xml,设计界面如下
<?xml version="1.0" encoding="utf-8"?>
<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=".MainActivity2">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/teal_200"
android:duplicateParentState="false"
android:orientation="vertical">
<TextView
android:id="@+id/textView8"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Welcome!"
android:textSize="40sp" />
</LinearLayout>
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="30sp"
android:text="账号:_______________________" />
<TextView
android:id="@+id/textView6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="30sp"
android:text="密码:_______________________" />
<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="确认"
android:textSize="30sp" />
</LinearLayout>
?最后即可启动实现成果。
?
?代码仓库地址:花如锦/funnyboy
?
?
|