文章列表
利用线性布局进行布局,添加<ImageView>并对其设置拉伸,不然在不同API的分辨率下在图片视图下会有缝隙。设置每一个<ImageView>的id。在Activity.java添加如下代码:
private ImageView image_white1;
private ImageView image_white2;
private ImageView image_white3;
private ImageView image_white4;
private ImageView image_white5;
private ImageView image_wh ...
在做的过程中发现自己对集合框架这方面有些不足,下面是集合框架list的应用
package my.employee;
import java.util.ArrayList;
import java.util.Scanner;
public class EmployeeInformationPro {
public static ArrayList<Employee> ems=new ArrayList();
public void addEmployee(){
Scanner sc=new Scanner(System.in);
System.out.println ...
这使用HTML中的js写的网页版计算器这是设计内容
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content= ...