-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #973 from NarutoHBH/master
#4 #实验四
- Loading branch information
Showing
11 changed files
with
319 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
...902210/实验四/edu/hzuapps/androidlabs/soft1714080902210/Soft1714080902210Activity_Check.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package edu.hzuapps.androidlabs.soft1714080902210; | ||
|
||
import android.content.Intent; | ||
import android.support.v7.app.AppCompatActivity; | ||
import android.os.Bundle; | ||
import android.view.View; | ||
import android.widget.Button; | ||
|
||
public class Soft1714080902210Activity_Check extends AppCompatActivity { | ||
|
||
@Override | ||
protected void onCreate(Bundle savedInstanceState) { | ||
super.onCreate(savedInstanceState); | ||
setContentView(R.layout.activity_soft1714080902210__check); | ||
Button btnOpen = findViewById(R.id.button6); | ||
btnOpen.setOnClickListener(new View.OnClickListener() { | ||
@Override | ||
public void onClick(View v) { | ||
startActivity(new Intent(Soft1714080902210Activity_Check.this,Soft1714080902210Activity_Second.class)); | ||
} | ||
}); | ||
} | ||
} |
23 changes: 23 additions & 0 deletions
23
...80902210/实验四/edu/hzuapps/androidlabs/soft1714080902210/Soft1714080902210Activity_New.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package edu.hzuapps.androidlabs.soft1714080902210; | ||
|
||
import android.content.Intent; | ||
import android.support.v7.app.AppCompatActivity; | ||
import android.os.Bundle; | ||
import android.view.View; | ||
import android.widget.Button; | ||
|
||
public class Soft1714080902210Activity_New extends AppCompatActivity { | ||
|
||
@Override | ||
protected void onCreate(Bundle savedInstanceState) { | ||
super.onCreate(savedInstanceState); | ||
setContentView(R.layout.activity_soft1714080902210__new); | ||
Button btnOpen = findViewById(R.id.button8); | ||
btnOpen.setOnClickListener(new View.OnClickListener() { | ||
@Override | ||
public void onClick(View v) { | ||
startActivity(new Intent(Soft1714080902210Activity_New.this,Soft1714080902210Activity_Second.class)); | ||
} | ||
}); | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
...02210/实验四/edu/hzuapps/androidlabs/soft1714080902210/Soft1714080902210Activity_Second.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
package edu.hzuapps.androidlabs.soft1714080902210; | ||
|
||
import android.content.DialogInterface; | ||
import android.content.Intent; | ||
import android.support.v7.app.AlertDialog; | ||
import android.support.v7.app.AppCompatActivity; | ||
import android.os.Bundle; | ||
import android.view.View; | ||
import android.widget.Button; | ||
|
||
public class Soft1714080902210Activity_Second extends AppCompatActivity { | ||
|
||
@Override | ||
protected void onCreate(Bundle savedInstanceState) { | ||
super.onCreate(savedInstanceState); | ||
setContentView(R.layout.activity_soft1714080902210__second); | ||
Button btnOpen = findViewById(R.id.button2); | ||
btnOpen.setOnClickListener(new View.OnClickListener() { | ||
@Override | ||
public void onClick(View v) { | ||
startActivity(new Intent(Soft1714080902210Activity_Second.this,Soft1714080902210Activity_New.class)); | ||
} | ||
}); | ||
Button btnOpen1 = findViewById(R.id.button3); | ||
btnOpen1.setOnClickListener(new View.OnClickListener() { | ||
@Override | ||
public void onClick(View v) { | ||
startActivity(new Intent(Soft1714080902210Activity_Second.this,Soft1714080902210Activity_Check.class)); | ||
} | ||
}); | ||
Button btnOpen2 = findViewById(R.id.button10); | ||
btnOpen2.setOnClickListener(new View.OnClickListener() { | ||
@Override | ||
public void onClick(View v) { | ||
startActivity(new Intent(Soft1714080902210Activity_Second.this,Sort1714080902210Activity.class)); | ||
} | ||
}); | ||
} | ||
|
||
} |
64 changes: 64 additions & 0 deletions
64
...714080902210/实验四/edu/hzuapps/androidlabs/soft1714080902210/Sort1714080902210Activity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
package edu.hzuapps.androidlabs.soft1714080902210; | ||
|
||
import android.content.DialogInterface; | ||
import android.content.Intent; | ||
import android.support.v7.app.AlertDialog; | ||
import android.support.v7.app.AppCompatActivity; | ||
import android.os.Bundle; | ||
import android.view.View; | ||
import android.widget.Button; | ||
import android.widget.TextView; | ||
|
||
import org.w3c.dom.Text; | ||
public class Sort1714080902210Activity extends AppCompatActivity { | ||
private TextView textView; | ||
|
||
@Override | ||
protected void onCreate(Bundle savedInstanceState) { | ||
super.onCreate(savedInstanceState); | ||
setContentView(R.layout.activity_sort1714080902210); | ||
Button btnOpen = findViewById(R.id.button); | ||
btnOpen.setOnClickListener(new View.OnClickListener() { | ||
@Override | ||
public void onClick(View v) { | ||
startActivity(new Intent(Sort1714080902210Activity.this,Soft1714080902210Activity_Second.class)); | ||
} | ||
}); | ||
} | ||
public void showdialog(View view) | ||
{ | ||
//定义一个新的对话框对象 | ||
AlertDialog.Builder alertdialogbuilder=new AlertDialog.Builder(this); | ||
//设置对话框提示内容 | ||
alertdialogbuilder.setMessage("确定要退出程序吗?"); | ||
//定义对话框2个按钮标题及接受事件的函数 | ||
alertdialogbuilder.setPositiveButton("确定",click1); | ||
alertdialogbuilder.setNegativeButton("取消",click2); | ||
//创建并显示对话框 | ||
AlertDialog alertdialog1=alertdialogbuilder.create(); | ||
alertdialog1.show(); | ||
|
||
} | ||
private DialogInterface.OnClickListener click1=new DialogInterface.OnClickListener() | ||
{ | ||
//使用该标记是为了增强程序在编译时候的检查,如果该方法并不是一个覆盖父类的方法,在编译时编译器就会报告错误。 | ||
|
||
@Override | ||
|
||
public void onClick(DialogInterface arg0,int arg1) | ||
{ | ||
//当按钮click1被按下时执行结束进程 | ||
android.os.Process.killProcess(android.os.Process.myPid()); | ||
} | ||
}; | ||
|
||
private DialogInterface.OnClickListener click2=new DialogInterface.OnClickListener() | ||
{ | ||
@Override | ||
public void onClick(DialogInterface arg0,int arg1) | ||
{ | ||
//当按钮click2被按下时则取消操作 | ||
arg0.cancel(); | ||
} | ||
}; | ||
} |
36 changes: 36 additions & 0 deletions
36
students/soft1714080902210/实验四/layout/activity_soft1714080902210__check.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<android.support.constraint.ConstraintLayout 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=".Soft1714080902210Activity_Check"> | ||
|
||
<LinearLayout | ||
android:id="@+id/linearLayout2" | ||
android:layout_width="0dp" | ||
android:layout_height="48dp" | ||
android:layout_marginStart="1dp" | ||
android:layout_marginEnd="1dp" | ||
android:layout_marginBottom="1dp" | ||
android:orientation="horizontal" | ||
app:layout_constraintBottom_toBottomOf="parent" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toStartOf="parent"> | ||
|
||
<Button | ||
android:id="@+id/button5" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="1" | ||
android:text="编辑" /> | ||
|
||
<Button | ||
android:id="@+id/button6" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="1" | ||
android:text="返回主页" /> | ||
|
||
</LinearLayout> | ||
</android.support.constraint.ConstraintLayout> |
35 changes: 35 additions & 0 deletions
35
students/soft1714080902210/实验四/layout/activity_soft1714080902210__new.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<android.support.constraint.ConstraintLayout 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=".Soft1714080902210Activity_New"> | ||
|
||
<LinearLayout | ||
android:id="@+id/linearLayout3" | ||
android:layout_width="0dp" | ||
android:layout_height="40dp" | ||
android:layout_marginStart="8dp" | ||
android:layout_marginEnd="8dp" | ||
android:layout_marginBottom="1dp" | ||
android:orientation="horizontal" | ||
app:layout_constraintBottom_toBottomOf="parent" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toStartOf="parent"> | ||
|
||
<Button | ||
android:id="@+id/button7" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="1" | ||
android:text="确认保存" /> | ||
|
||
<Button | ||
android:id="@+id/button8" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="1" | ||
android:text="取消" /> | ||
</LinearLayout> | ||
</android.support.constraint.ConstraintLayout> |
57 changes: 57 additions & 0 deletions
57
students/soft1714080902210/实验四/layout/activity_soft1714080902210__second.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<android.support.constraint.ConstraintLayout 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=".Sort1714080902210Activity"> | ||
|
||
<ImageView | ||
android:id="@+id/imageView2" | ||
android:layout_width="0dp" | ||
android:layout_height="0dp" | ||
android:layout_marginStart="4dp" | ||
android:layout_marginTop="44dp" | ||
android:layout_marginEnd="4dp" | ||
android:layout_marginBottom="44dp" | ||
app:layout_constraintBottom_toBottomOf="parent" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toTopOf="parent" | ||
app:srcCompat="@drawable/images" /> | ||
|
||
<LinearLayout | ||
android:id="@+id/linearLayout" | ||
android:layout_width="430dp" | ||
android:layout_height="0dp" | ||
android:layout_marginEnd="2dp" | ||
android:layout_marginBottom="1dp" | ||
android:orientation="horizontal" | ||
app:layout_constraintBottom_toBottomOf="parent" | ||
app:layout_constraintEnd_toEndOf="parent"> | ||
|
||
|
||
<Button | ||
android:id="@+id/button2" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="1" | ||
android:text="新建事件" /> | ||
|
||
<Button | ||
android:id="@+id/button3" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="1" | ||
android:text="查看事件" /> | ||
|
||
<Button | ||
android:id="@+id/button10" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="1" | ||
android:text="返回封面" /> | ||
|
||
</LinearLayout> | ||
|
||
</android.support.constraint.ConstraintLayout> |
41 changes: 41 additions & 0 deletions
41
students/soft1714080902210/实验四/layout/activity_sort1714080902210.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<android.support.constraint.ConstraintLayout 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=".Sort1714080902210Activity"> | ||
|
||
<Button | ||
android:id="@+id/button" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginBottom="61dp" | ||
android:text="进入" | ||
app:layout_constraintBottom_toBottomOf="parent" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toStartOf="parent" /> | ||
|
||
<Button | ||
android:id="@+id/button9" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="1" | ||
android:onClick="showdialog" | ||
android:text="退出软件" | ||
app:layout_constraintBottom_toBottomOf="@+id/imageView6" | ||
app:layout_constraintEnd_toEndOf="@+id/imageView6" /> | ||
|
||
<ImageView | ||
android:id="@+id/imageView6" | ||
android:layout_width="0dp" | ||
android:layout_height="0dp" | ||
app:layout_constraintBottom_toBottomOf="parent" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintHorizontal_bias="0.0" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toTopOf="parent" | ||
app:layout_constraintVertical_bias="1.0" | ||
app:srcCompat="@drawable/android" /> | ||
|
||
</android.support.constraint.ConstraintLayout> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.