【黑马Android】(03)学生管理系统/动态刷新界面

简介: <p></p> <h2><span style="font-family:黑体; font-size:16pt">学生管理系统</span><span style="font-family:黑体; font-size:16pt"></span></h2> <pre code_snippet_id="1612875" snippet_file_name="blog_20160316_

学生管理系统

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.itheima27.sutdentmanager"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.itheima27.sutdentmanager.MainActivity"
            android:label="@string/app_name"
            android:theme="@android:style/Theme.NoTitleBar" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white"
    android:orientation="vertical" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="5dip"
        android:text="学生管理系统"
        android:textColor="#99CCFF"
        android:textSize="23sp" />

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dip"
        android:padding="5dip" >

        <TextView
            android:id="@+id/tv_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="15dip"
            android:paddingRight="15dip"
            android:text="姓名"
            android:textSize="18sp" />

        <TextView
            android:id="@+id/tv_sex"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dip"
            android:layout_toRightOf="@id/tv_name"
            android:paddingLeft="15dip"
            android:paddingRight="15dip"
            android:text="性别"
            android:textSize="18sp" />

        <TextView
            android:id="@+id/tv_age"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dip"
            android:layout_toRightOf="@id/tv_sex"
            android:paddingLeft="15dip"
            android:paddingRight="15dip"
            android:text="年龄"
            android:textSize="18sp" />

        <EditText
            android:id="@+id/et_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@id/tv_name"
            android:layout_alignRight="@id/tv_name"
            android:layout_below="@id/tv_name"
            android:singleLine="true" />

        <EditText
            android:id="@+id/et_sex"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@id/tv_sex"
            android:layout_alignRight="@id/tv_sex"
            android:layout_below="@id/tv_sex"
            android:singleLine="true" />

        <EditText
            android:id="@+id/et_age"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@id/tv_age"
            android:layout_alignRight="@id/tv_age"
            android:layout_below="@id/tv_age"
            android:inputType="number"
            android:singleLine="true" />

        <Button
            android:id="@+id/btn_add_student"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignBaseline="@id/et_age"
            android:layout_toRightOf="@id/et_age"
            android:text="添加学生"
            android:textSize="20sp" />
    </RelativeLayout>

    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1" >

        <LinearLayout
            android:id="@+id/ll_student_list"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_margin="1dip"
            android:orientation="vertical"
            android:padding="5dip" >
        </LinearLayout>
    </ScrollView>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dip"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/btn_save"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="保存数据"
            android:textSize="20sp" />

        <Button
            android:id="@+id/btn_restore"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="恢复数据"
            android:textSize="20sp" />
    </LinearLayout>

</LinearLayout>


package com.itheima27.sutdentmanager.entities;

public class Student {

	private String name;
	private String sex;
	private Integer age;
	public Student(String name, String sex, Integer age) {
		super();
		this.name = name;
		this.sex = sex;
		this.age = age;
	}
	public Student() {
		super();
		// TODO Auto-generated constructor stub
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String getSex() {
		return sex;
	}
	public void setSex(String sex) {
		this.sex = sex;
	}
	public Integer getAge() {
		return age;
	}
	public void setAge(Integer age) {
		this.age = age;
	}
	@Override
	public String toString() {
		return "Student [name=" + name + ", sex=" + sex + ", age=" + age + "]";
	}
}

package com.itheima27.sutdentmanager;

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import org.xmlpull.v1.XmlSerializer;

import com.itheima27.sutdentmanager.entities.Student;

import android.os.Bundle;
import android.os.Environment;
import android.app.Activity;
import android.graphics.Color;
import android.text.TextUtils;
import android.util.Xml;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.EditText;
import android.widget.LinearLayout;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends Activity implements OnClickListener {

    private EditText etName;
	private EditText etSex;
	private EditText etAge;
	private LinearLayout llStudentList;
	private List<Student> studentList;
	private String filePath;

	@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        
        init();
    }

	private void init() {
		etName = (EditText) findViewById(R.id.et_name);
		etSex = (EditText) findViewById(R.id.et_sex);
		etAge = (EditText) findViewById(R.id.et_age);
		
		llStudentList = (LinearLayout) findViewById(R.id.ll_student_list);

		findViewById(R.id.btn_save).setOnClickListener(this);
		findViewById(R.id.btn_restore).setOnClickListener(this);
		findViewById(R.id.btn_add_student).setOnClickListener(this);
		
		studentList = new ArrayList<Student>();
		filePath = Environment.getExternalStorageDirectory().getPath() + "/student.xml";
	}

	@Override
	public void onClick(View v) {
		switch (v.getId()) {
		case R.id.btn_save:
			if(studentList.size() > 0) {
				if(saveStudent2Local()) {
					Toast.makeText(this, "保存成功", 0).show();
				} else {
					Toast.makeText(this, "保存失败", 0).show();
				}
			} else {
				Toast.makeText(this, "当前没有数据", 0).show();
			}
			break;
		case R.id.btn_restore:
			if(restoreStudentFromLocal()) {
				Toast.makeText(this, "恢复成功", 0).show();
			} else {
				Toast.makeText(this, "恢复失败", 0).show();
			}
			break;
		case R.id.btn_add_student:
			addStudent();
			break;
		default:
			break;
		}
	}
	
	private boolean restoreStudentFromLocal() {
		try {
			XmlPullParser parser = Xml.newPullParser();
			parser.setInput(new FileInputStream(filePath), "utf-8");
			
			int eventType = parser.getEventType();
			
			studentList.clear();
			
			Student student = null;
			String nodeName = null;
			while(eventType != XmlPullParser.END_DOCUMENT) {
				nodeName = parser.getName();
				switch (eventType) {
				case XmlPullParser.START_TAG:
					if("student".equals(nodeName)) {
						student = new Student();
					} else if("name".equals(nodeName)) {
						student.setName(parser.nextText());
					} else if("sex".equals(nodeName)) {
						student.setSex(parser.nextText());
					} else if("age".equals(nodeName)) {
						student.setAge(Integer.valueOf(parser.nextText()));
					}
					break;
				case XmlPullParser.END_TAG:
					if("student".equals(nodeName)) {
						studentList.add(student);
					}
					break;
				default:
					break;
				}
				eventType = parser.next();
			}
			refreshStudentList();
			
			return true;
		} catch (Exception e) {
			e.printStackTrace();
		}
		return false;
	}
	
	private void refreshStudentList() {
		llStudentList.removeAllViews();
		TextView childView;
		for (Student student : studentList) {
			childView = new TextView(this);
			childView.setTextSize(23);
			childView.setTextColor(Color.BLACK);
			childView.setText("  " + student.getName() + "  " + student.getSex() + "  " + student.getAge());
			llStudentList.addView(childView);
		}
	}
	
	private boolean saveStudent2Local() {
		try {
			XmlSerializer serializer = Xml.newSerializer();
			serializer.setOutput(new FileOutputStream(filePath), "utf-8");
			
			serializer.startDocument("utf-8", true);
			serializer.startTag(null, "infos");
			for (Student stu : studentList) {
				serializer.startTag(null, "student");
				
				serializer.startTag(null, "name");
				serializer.text(stu.getName());
				serializer.endTag(null, "name");

				serializer.startTag(null, "sex");
				serializer.text(stu.getSex());
				serializer.endTag(null, "sex");

				serializer.startTag(null, "age");
				serializer.text(String.valueOf(stu.getAge()));
				serializer.endTag(null, "age");
				
				serializer.endTag(null, "student");
			}
			serializer.endTag(null, "infos");
			serializer.endDocument();
			return true;
		} catch (Exception e) {
			e.printStackTrace();
		}
		return false;
	}

	private void addStudent() {
		String name = etName.getText().toString();
		String sex = etSex.getText().toString();
		String age = etAge.getText().toString();
		
		if(!TextUtils.isEmpty(name) 
				&& !TextUtils.isEmpty(sex) 
				&& !TextUtils.isEmpty(age)) {
			studentList.add(new Student(name, sex, Integer.valueOf(age)));
			TextView childView = new TextView(this);
			childView.setTextSize(23);
			childView.setTextColor(Color.BLACK);
			childView.setText("  " + name + "  " + sex + "  " + age);
			llStudentList.addView(childView);
		} else {
			Toast.makeText(this, "请正确输入", 0).show();
		}
	}
}

动态刷新界面

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    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="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="onClick"
        android:text="添加" />

    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >

        <LinearLayout
            android:id="@+id/ll"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical" >
        </LinearLayout>
    </ScrollView>

</LinearLayout>

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.itheima28.refreshview"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.itheima28.refreshview.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

package com.itheima28.refreshview;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.TextView;

public class MainActivity extends Activity {

	private LinearLayout llGroup;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		
		llGroup = (LinearLayout) findViewById(R.id.ll);
	}

	public void onClick(View view) {
		
		// 添加一个TextView向llGroup
		
		// 定义一个textview对象
		TextView tv = new TextView(this);
		tv.setText("张三   女   34");
		
		// 把textview对象添加到linearlayout中
		llGroup.addView(tv);
	}
}






目录
相关文章
|
2月前
|
人工智能 搜索推荐 物联网
Android系统版本演进与未来展望####
本文深入探讨了Android操作系统从诞生至今的发展历程,详细阐述了其关键版本迭代带来的创新特性、用户体验提升及对全球移动生态系统的影响。通过对Android历史版本的回顾与分析,本文旨在揭示其成功背后的驱动力,并展望未来Android可能的发展趋势与面临的挑战,为读者呈现一个既全面又具深度的技术视角。 ####
|
2月前
|
IDE Java 开发工具
移动应用与系统:探索Android开发之旅
在这篇文章中,我们将深入探讨Android开发的各个方面,从基础知识到高级技术。我们将通过代码示例和案例分析,帮助读者更好地理解和掌握Android开发。无论你是初学者还是有经验的开发者,这篇文章都将为你提供有价值的信息和技巧。让我们一起开启Android开发的旅程吧!
|
1月前
|
监控 Java Android开发
深入探索Android系统的内存管理机制
本文旨在全面解析Android系统的内存管理机制,包括其工作原理、常见问题及其解决方案。通过对Android内存模型的深入分析,本文将帮助开发者更好地理解内存分配、回收以及优化策略,从而提高应用性能和用户体验。
|
1月前
|
存储 安全 Android开发
探索Android系统的最新安全特性
在数字时代,智能手机已成为我们生活中不可或缺的一部分。随着技术的不断进步,手机操作系统的安全性也越来越受到重视。本文将深入探讨Android系统最新的安全特性,包括其设计理念、实施方式以及对用户的影响。通过分析这些安全措施如何保护用户免受恶意软件和网络攻击的威胁,我们希望为读者提供对Android安全性的全面了解。
|
2月前
|
监控 Java Android开发
深入探讨Android系统的内存管理机制
本文将深入分析Android系统的内存管理机制,包括其内存分配、回收策略以及常见的内存泄漏问题。通过对这些方面的详细讨论,读者可以更好地理解Android系统如何高效地管理内存资源,从而提高应用程序的性能和稳定性。
98 16
|
2月前
|
安全 Android开发 iOS开发
深入探讨Android与iOS系统的差异及未来发展趋势
本文旨在深入分析Android和iOS两大移动操作系统的核心技术差异、用户体验以及各自的市场表现,进一步探讨它们在未来技术革新中可能的发展方向。通过对比两者的开放性、安全性、生态系统等方面,本文揭示了两大系统在移动设备市场中的竞争态势和潜在变革。
|
2月前
|
算法 JavaScript Android开发
|
2月前
|
安全 搜索推荐 Android开发
揭秘安卓与iOS系统的差异:技术深度对比
【10月更文挑战第27天】 本文深入探讨了安卓(Android)与iOS两大移动操作系统的技术特点和用户体验差异。通过对比两者的系统架构、应用生态、用户界面、安全性等方面,揭示了为何这两种系统能够在市场中各占一席之地,并为用户提供不同的选择。文章旨在为读者提供一个全面的视角,理解两种系统的优势与局限,从而更好地根据自己的需求做出选择。
160 2
|
2月前
|
安全 搜索推荐 程序员
深入探索Android系统的碎片化问题及其解决方案
在移动操作系统的世界中,Android以其开放性和灵活性赢得了广泛的市场份额。然而,这种开放性也带来了一个众所周知的问题——系统碎片化。本文旨在探讨Android系统碎片化的现状、成因以及可能的解决方案,为开发者和用户提供一种全新的视角来理解这一现象。通过分析不同版本的Android系统分布、硬件多样性以及更新机制的影响,我们提出了一系列针对性的策略,旨在减少碎片化带来的影响,提升用户体验。
|
2月前
|
安全 Android开发 iOS开发
深入探索iOS与Android系统的差异性及优化策略
在当今数字化时代,移动操作系统的竞争尤为激烈,其中iOS和Android作为市场上的两大巨头,各自拥有庞大的用户基础和独特的技术特点。本文旨在通过对比分析iOS与Android的核心差异,探讨各自的优势与局限,并提出针对性的优化策略,以期为用户提供更优质的使用体验和为开发者提供有价值的参考。

热门文章

最新文章