NetBlog主题

Android Java IO写入与读取数据
Android基础

Android Java IO写入与读取数据

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…

Android SharedPreferences轻量数据存储与读取
Android基础

Android SharedPreferences轻量数据存储与读取

1730

/** @fimeName 存储的文件名 为xml格式文件* @key 存储数据的键* @value 存储数据* */public void writeData(String fimeName, String key, String value) {// fileName文件名 MODE_PRIVATE 为防问权限 文件只能当前本应用读写SharedPreferences sharedPreferences = getSha…

自定义 Android 对话框
Android基础

自定义 Android 对话框

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…

Android 内容使用浏览器WebView
Android基础

Android 内容使用浏览器WebView

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…

自定义 Android AlertDialog  对话框
Android基础

自定义 Android AlertDialog 对话框

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…

Android AlertDialog对话框
Android基础

Android AlertDialog对话框

1759

使用AlertDialog.Builder创建对话框需要了解以下几个方法:setTitle :为对话框设置标题 setIcon :为对话框设置图标 setMessage:为对话框设置内容 setView : 给对话框设置自定义样式 setItems :设置对话框要显示的一个list,一般用于显示几个命令时。 setMultiChoiceItems…

解决Android 连续多次点击   Toast 重复显示
Android基础

解决Android 连续多次点击 Toast 重复显示

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…

Android加载网络图片到ImageView控件上
Android基础

Android加载网络图片到ImageView控件上

5689

我们在这里是引用第三方资源包1、在 GitHub上引用资源包 地址https://github.com/bumptech/glide2、根据第三方资源包 文档说明,我们在这里使用的是在build.gradle 添加配置代码 在Android Studio 里面build.gradle的文件加上上面代码,如下 加上配置代码之后 同步资源包 3、添…

Android spinner下拉框连动
Android基础

Android spinner下拉框连动

3799

本代码主要功能 1、 向拉菜单 spinner添加数据2、下拉菜单连动以下是核心代码//定义变量 private Spinner spinner3; private Spinner spinner4; private Map<String,List<String>> gaderMap=new HashMap<String, List<String>>(); private List<S…