NetBlog主题
2020-10-04 22:51
1880
public void save(String fileName,String content) {try {FileOutputStream fileOutputStream=openFileOutput(fileName,MODE_PRIVATE);fileOutputStream.write(content.getBytes());fileOutputStream.close();} catch (IOException e) {e.printStackTrace();}}public Str…
2020-10-04 13:17
1730
/** @fimeName 存储的文件名 为xml格式文件* @key 存储数据的键* @value 存储数据* */public void writeData(String fimeName, String key, String value) {// fileName文件名 MODE_PRIVATE 为防问权限 文件只能当前本应用读写SharedPreferences sharedPreferences = getSha…
2020-10-01 22:39
2026
在这用到了支持点有:方法传递、参数传递activity_custom_dialog.xml 文件代码?xml version="1.0" encoding="utf-8"?LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_pare…
2020-09-30 14:22
1751
activity_web_view.xml文件内容?xml version="1.0" encoding="utf-8"?LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"WebViewandroid:id="@+id/wv_1"android:la…
2020-09-30 14:06
2569
自定义样式EditText边框样式 bg_edit.xml?xml version="1.0" encoding="utf-8"?shape xmlns:android="http://schemas.android.com/apk/res/android"strokeandroid:width="1dp"android:color="#999999"/strokecornersandroid:radius="10dp"/corners/shape…
2020-09-30 13:33
1759
使用AlertDialog.Builder创建对话框需要了解以下几个方法:setTitle :为对话框设置标题
setIcon :为对话框设置图标
setMessage:为对话框设置内容
setView : 给对话框设置自定义样式
setItems :设置对话框要显示的一个list,一般用于显示几个命令时。
setMultiChoiceItems…
2020-09-29 17:03
5096
在这里我封装好了一个类
import android.content.Context;
import android.widget.Toast;public class ToastUtil {private static Toast mToast;public static void ShowMsg(Context context, String msg,int duration) {if (mToast == null) {mToast = Toast.makeText(contex…
2020-09-28 17:28
5689
我们在这里是引用第三方资源包1、在 GitHub上引用资源包 地址https://github.com/bumptech/glide2、根据第三方资源包 文档说明,我们在这里使用的是在build.gradle 添加配置代码 在Android Studio 里面build.gradle的文件加上上面代码,如下 加上配置代码之后 同步资源包 3、添…
2020-09-25 11:50
3313
Android Studio IDE 报错出现 Failed to open zip file.
Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.)
Re-download dependencies and sync project (requires network)是因为下载官方文件失败,官方是国外服务器,…
2018-06-22 14:39
3799
本代码主要功能 1、 向拉菜单 spinner添加数据2、下拉菜单连动以下是核心代码//定义变量
private Spinner spinner3;
private Spinner spinner4;
private Map<String,List<String>> gaderMap=new HashMap<String, List<String>>();
private List<S…