Android
dxm809
这个作者很懒,什么都没留下…
展开
-
选项菜单使用
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:focusable="true" android:focusableInTouchMode="true" android:orientation="vert.原创 2020-06-02 08:29:44 · 270 阅读 · 0 评论 -
通过读取短信息校准流量
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:padding="5dp" > <Button android:.原创 2020-06-02 08:29:33 · 1071 阅读 · 0 评论 -
添加联系人
activity_content_resolver.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:padding="10dp" >.原创 2020-05-31 10:06:46 · 319 阅读 · 0 评论 -
CommunicationUtil
package com.example.forth;import java.util.ArrayList;import android.annotation.SuppressLint;import android.annotation.TargetApi;import android.content.ContentProviderOperation;import android.content.ContentResolver;import android.content.ContentUris.原创 2020-05-31 09:54:11 · 321 阅读 · 0 评论 -
UserInfoProvider & UserInfoContent
package com.example.forth;import android.content.ContentProvider;import android.content.ContentUris;import android.content.ContentValues;import android.content.UriMatcher;import android.database.Cursor;import android.database.sqlite.SQLiteDatabase.原创 2020-05-31 08:18:42 · 348 阅读 · 0 评论 -
ContentProvider作为服务端接口
activity_content_provider.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:padding="10dp" >.原创 2020-05-31 08:17:18 · 201 阅读 · 0 评论 -
读取Application全局内存
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:focusable="true" android:focusableInTouchMode="true" android:orientation="v...原创 2020-05-31 07:44:51 · 231 阅读 · 0 评论 -
写入Application全局内存
activity_app_write.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:focusable="true" android:focusableInTouchMode="true" .原创 2020-05-31 07:37:40 · 177 阅读 · 0 评论 -
从SD卡读取图片
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:focusable="true" android:focusableInTouchMode="true" android:orientation="vert.原创 2020-06-02 08:29:20 · 339 阅读 · 0 评论 -
写图片到SD卡
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:focusable="true" android:focusableInTouchMode="true" android:orientation="vert.原创 2020-05-31 07:16:23 · 178 阅读 · 0 评论 -
读SD卡里面的文本文件
activity_text_read.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:focusable="true" android:focusableInTouchMode="true" .原创 2020-05-31 07:07:26 · 248 阅读 · 0 评论 -
写文本文件到sd卡
activity_text_write.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:focusable="true" android:focusableInTouchMode="true" .原创 2020-05-31 06:58:41 · 203 阅读 · 0 评论 -
FileUtil的使用
package com.example.forth;import java.io.BufferedInputStream;import java.io.BufferedOutputStream;import java.io.File;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.FilenameFilter;import java.util.ArrayList;import ja.原创 2020-05-31 06:56:44 · 2272 阅读 · 0 评论 -
sqlite write
activity_sqlite_write.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:focusable="true" android:focusableInTouchMode="true" .原创 2020-05-17 21:16:13 · 159 阅读 · 0 评论 -
UserInfo.java
package com.example.forth;public class UserInfo { public long rowid; public int xuhao; public String name; public int age; public long height; public float weight; public boolean married; public String update_time; pu.原创 2020-05-17 21:14:18 · 550 阅读 · 0 评论 -
UserDBHelper.java
package com.example.forth;import java.util.ArrayList;import android.annotation.SuppressLint;import android.content.ContentValues;import android.content.Context;import android.database.Cursor;import android.database.sqlite.SQLiteDatabase;import an.原创 2020-05-17 21:13:41 · 693 阅读 · 0 评论 -
SharedPreferences Read
activity_share_read.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:focusable="true" android:focusableInTouchMode="true" .原创 2020-05-17 20:49:53 · 183 阅读 · 0 评论 -
SharedPreferences Write
activity_share_write.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:focusable="true" android:focusableInTouchMode="true" .原创 2020-05-17 20:37:08 · 161 阅读 · 0 评论 -
editext_selector
editext_selector.xml<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_focused="true" android:drawable="@drawable/shape_edit_focus"/> <item andro.原创 2020-05-17 20:33:55 · 237 阅读 · 0 评论 -
App登录
activity_login.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:focusable="true" android:focusableInTouchMode="true" andr.原创 2020-05-16 19:57:52 · 479 阅读 · 0 评论 -
item_dropdown
item_dropdown.xml<TextView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:minHeight="40dp" android:gravity="center" android:textSize="17.原创 2020-05-16 19:36:21 · 157 阅读 · 0 评论 -
item_select
item_select.xml<TextView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/tv_name" android:layout_width="match_parent" android:layout_height="50dp" android:singleLine="true" android:gravity="cen.原创 2020-05-16 19:35:28 · 294 阅读 · 0 评论 -
Utils
package com.example.middle.util;import android.content.Context;import android.util.DisplayMetrics;import android.view.WindowManager;public class Utils { // 根据手机的分辨率从 dp 的单位 转成为 px(像素) public static int dip2px(Context context, float dpValue).原创 2020-05-16 19:33:22 · 268 阅读 · 0 评论 -
ViewUtil
package com.example.third;import java.lang.reflect.Field;import android.app.Activity;import android.content.Context;import android.text.InputFilter;import android.view.View;import android.view.inputmethod.InputMethodManager;import android.widget..原创 2020-05-16 19:32:25 · 466 阅读 · 0 评论 -
DateUtil
package com.example.third;import android.annotation.SuppressLint;import java.text.SimpleDateFormat;import java.util.Date;public class DateUtil { public static String getNowDateTime() { SimpleDateFormat sdf = new SimpleDateFormat("yyyyMM.原创 2020-05-16 19:31:05 · 122 阅读 · 0 评论 -
TextUtils的使用
activity_text_check.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:padding="5dp" > &.原创 2020-05-16 19:24:26 · 436 阅读 · 0 评论 -
Activity之间传递数据
activity_act_request.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:padding="10dp" >原创 2020-05-16 18:57:58 · 128 阅读 · 0 评论 -
Activity生命周期
activity_act_jump.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:padding="10dp" > &l.原创 2020-05-16 18:01:08 · 138 阅读 · 0 评论 -
Switch_2
activity_switch_ios.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:padding="10dp" > .原创 2020-05-13 22:49:45 · 162 阅读 · 0 评论 -
Switch_1
activity_switch_default.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:padding="10dp" >.原创 2020-05-13 22:41:37 · 213 阅读 · 0 评论 -
EditText_6
activity_edit_auto.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:padding="5dp" > &l.原创 2020-05-13 22:23:03 · 113 阅读 · 0 评论 -
EditText_5
activity_edit_jump.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:paddingLeft="20dp" and.原创 2020-05-13 22:12:54 · 242 阅读 · 0 评论 -
EditText_4
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="5dp" android:orientation="vertical" > <EditText style=.原创 2020-05-13 22:01:50 · 350 阅读 · 1 评论 -
EditText_3
activity_edit_hide.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/ll_hide" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" andr.原创 2020-05-13 21:58:15 · 144 阅读 · 0 评论 -
EditText_2
activity_edit_border.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="5dp" android:orientation="vertical" > .原创 2020-05-13 21:30:18 · 225 阅读 · 0 评论 -
EditText_1
activity_edit_simple.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="5dp" android:orientation="vertical" > .原创 2020-05-13 21:06:04 · 136 阅读 · 0 评论 -
spinner显示图标和文字
MainActivity.javapackage com.example.third;import android.os.Bundle;import com.google.android.material.floatingactionbutton.FloatingActionButton;import com.google.android.material.snackbar.Snackbar;import androidx.appcompat.app.AppCompatActivity.原创 2020-05-12 22:28:49 · 876 阅读 · 0 评论 -
spinner dialog
MainActivity.javapackage com.example.third;import android.os.Bundle;import com.google.android.material.floatingactionbutton.FloatingActionButton;import com.google.android.material.snackbar.Snackbar;import androidx.appcompat.app.AppCompatActivit..原创 2020-05-12 21:50:12 · 261 阅读 · 0 评论 -
ArrayAdapter的使用
x在res/string.xml中增加资源 <string name="addItemHint">New To Do Item</string> <string name="addItemContentDescription">New To Do Item</string>修改activity.xml<?xml version="1.0" encoding="utf-8"?><LinearLayout andr..原创 2020-05-10 07:37:03 · 263 阅读 · 0 评论 -
RadioGroup
<?xml version="1.0" encoding="utf-8"?><LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" xmlns:android="http://schemas.android.com/apk/res/androi...原创 2020-05-04 17:42:29 · 150 阅读 · 0 评论