其他分享
首页 > 其他分享> > 红色小恐龙团队--冲刺DAY6

红色小恐龙团队--冲刺DAY6

作者:互联网

目录

红色小恐龙团队--冲刺DAY6

1. 今日任务

例如

(2):toast更多侧重于弹出通知等一系列文本框,不需要用户做出选择,告知用户当前状态即可。

例如

代码实现如下:

public class Util {

    private static Toast toast;

    public static void showToast(Context context, 
        String content) {
        if (toast == null) {
            toast = Toast.makeText(context,
                         content, 
                         Toast.LENGTH_SHORT);
        } else {
            toast.setText(content);
        }
        toast.show();
    }

}

在此代码中,就可根据需要将时长,文字进行相应的编辑。

具体代码实现如下:

sd卡的读取:

public void ReadSDFile(Context context,String filename) {
        try {
            File sdPath = Environment.getExternalStorageDirectory();
            if (!sdPath.exists()) {
                Toast.makeText(context,"不存在SD卡目录",Toast.LENGTH_SHORT).show();
                return;
            }
            File myfile = new File(sdPath, filename);
            FileInputStream fis = new FileInputStream(myfile);
            InputStreamReader isr = new InputStreamReader(fis, "UTF-8");
            BufferedReader bfr = new BufferedReader(isr);
            String ln;
            while ((ln = bfr.readLine()) != null) {
                System.out.println(ln);
            }
            isr.close();
            fis.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

文件的创立:

public void WriteSDFile(Context context,String filename) {
        try {
            File sdPath = Environment.getExternalStorageDirectory();
            if (!sdPath.exists()) {
                Toast.makeText(context,"不存在SD卡目录",Toast.LENGTH_SHORT).show();
                return;
            }
            File myfile = new File(sdPath, filename);
            myfile.createNewFile();
            System.out.println("文件名:" + myfile.getName());
            System.out.println("路径:" + myfile.getAbsolutePath());
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

4.项目进展

app定型完工,基本没有大的变动。接下来准备ppt答辩即可。

5.明日工作安排

制作ppt,测试程序,准备答辩。

6.各组员对项目的贡献量

学号 贡献值
20182301 5
20182315 5
20182316 5
20182326 5
20182333 5

7.小组照片

标签:toast,Toast,context,sdPath,DAY6,恐龙,冲刺,myfile,File
来源: https://www.cnblogs.com/zjwbk/p/12146915.html