当前位置:   article > 正文

Android Studio App开发入门之数据存储中共享参数SharedPreferneces的讲解及使用(附源码 超详细必看)_android studio sharedpreferences

android studio sharedpreferences

运行有问题或需要源码请点赞关注收藏后评论区留言~~~

一、共享参数的用法

SharedPreferences是Android的一个轻量级存储工具,它采用的存储结构是key-value的键值对方式,类似于Java的Properties,二者都是把key-value的键值对保存在配置文件中,不同的是Properties的文件内容形如key=value,而SharedPreferences的存储介质是XML文件 基于XML文件特点 共享参数主要用于以下场合

1:简单且孤立的数据 若是复杂的则要存于关系数据库

2:文本形式的数据 若是二进制数据则要保存到文件

3:需要持久化存储的数据 App退出再次启动时,之前保存的数据仍然有效

共享数据对数据的存储和读取操作类似于Map,也有存储数据的put方法,以及读取数据的get方法。 实例如下  输入数据后可在另一个页面查询

 

 

 ShareReadActivity类

  1. package com.example.chpater06;
  2. import android.annotation.SuppressLint;
  3. import android.content.SharedPreferences;
  4. import android.os.Bundle;
  5. import android.widget.TextView;
  6. import androidx.appcompat.app.AppCompatActivity;
  7. import java.util.Map;
  8. @SuppressLint("DefaultLocale")
  9. public class ShareReadActivity extends AppCompatActivity {
  10. private TextView tv_share;
  11. @Override
  12. protected void onCreate(Bundle savedInstanceState) {
  13. super.onCreate(savedInstanceState);
  14. setContentView(R.layout.activity_share_read);
  15. tv_share = findViewById(R.id.tv_share);
  16. readSharedPreferences(); // 从共享参数中读取信息
  17. }
  18. // 从共享参数中读取信息
  19. private void readSharedPreferences() {
  20. // 从share.xml中获取共享参数对象
  21. SharedPreferences shared = getSharedPreferences("share", MODE_PRIVATE);
  22. String desc = "共享参数中保存的信息如下:";
  23. // 获取共享参数保存的所有映射配对信息
  24. Map<String, Object> mapParam = (Map<String, Object>) shared.getAll();
  25. // 遍历该映射对象,并将配对信息形成描述文字
  26. for (Map.Entry<String, Object> item_map : mapParam.entrySet()) {
  27. String key = item_map.getKey(); // 获取该配对的键信息
  28. Object value = item_map.getValue(); // 获取该配对的值信息
  29. if (value instanceof String) { // 如果配对值的类型为字符串
  30. desc = String.format("%s\n %s的取值为%s", desc, key,
  31. shared.getString(key, ""));
  32. } else if (value instanceof Integer) { // 如果配对值的类型为整型数
  33. desc = String.format("%s\n %s的取值为%d", desc, key,
  34. shared.getInt(key, 0));
  35. } else if (value instanceof Float) { // 如果配对值的类型为浮点数
  36. desc = String.format("%s\n %s的取值为%f", desc, key,
  37. shared.getFloat(key, 0.0f));
  38. } else if (value instanceof Boolean) { // 如果配对值的类型为布尔数
  39. desc = String.format("%s\n %s的取值为%b", desc, key,
  40. shared.getBoolean(key, false));
  41. } else if (value instanceof Long) { // 如果配对值的类型为长整型
  42. desc = String.format("%s\n %s的取值为%d", desc, key,
  43. shared.getLong(key, 0L));
  44. } else { // 如果配对值的类型为未知类型
  45. desc = String.format("%s\n参数%s的取值为未知类型", desc, key);
  46. }
  47. }
  48. if (mapParam.size() <= 0) {
  49. desc = "共享参数中保存的信息为空";
  50. }
  51. tv_share.setText(desc);
  52. }
  53. }

ShareWriteActivity类

  1. package com.example.chpater06;
  2. import android.content.SharedPreferences;
  3. import android.os.Bundle;
  4. import android.text.TextUtils;
  5. import android.view.View;
  6. import android.widget.CheckBox;
  7. import android.widget.CompoundButton;
  8. import android.widget.EditText;
  9. import androidx.appcompat.app.AppCompatActivity;
  10. import com.example.chapter06.util.DateUtil;
  11. import com.example.chapter06.util.ToastUtil;
  12. public class ShareWriteActivity extends AppCompatActivity implements View.OnClickListener, CompoundButton.OnCheckedChangeListener {
  13. private SharedPreferences mShared; // 声明一个共享参数对象
  14. private EditText et_name;
  15. private EditText et_age;
  16. private EditText et_height;
  17. private EditText et_weight;
  18. private boolean bMarried = false;
  19. @Override
  20. protected void onCreate(Bundle savedInstanceState) {
  21. super.onCreate(savedInstanceState);
  22. setContentView(R.layout.activity_share_write);
  23. et_name = findViewById(R.id.et_name);
  24. et_age = findViewById(R.id.et_age);
  25. et_height = findViewById(R.id.et_height);
  26. et_weight = findViewById(R.id.et_weight);
  27. CheckBox ck_married = findViewById(R.id.ck_married);
  28. ck_married.setOnCheckedChangeListener(this);
  29. findViewById(R.id.btn_save).setOnClickListener(this);
  30. // 从share.xml中获取共享参数对象
  31. mShared = getSharedPreferences("share", MODE_PRIVATE);
  32. }
  33. @Override
  34. public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
  35. bMarried = isChecked;
  36. }
  37. @Override
  38. public void onClick(View v) {
  39. if (v.getId() == R.id.btn_save) {
  40. String name = et_name.getText().toString();
  41. String age = et_age.getText().toString();
  42. String height = et_height.getText().toString();
  43. String weight = et_weight.getText().toString();
  44. if (TextUtils.isEmpty(name)) {
  45. ToastUtil.show(this, "请先填写姓名");
  46. return;
  47. } else if (TextUtils.isEmpty(age)) {
  48. ToastUtil.show(this, "请先填写年龄");
  49. return;
  50. } else if (TextUtils.isEmpty(height)) {
  51. ToastUtil.show(this, "请先填写身高");
  52. return;
  53. } else if (TextUtils.isEmpty(weight)) {
  54. ToastUtil.show(this, "请先填写体重");
  55. return;
  56. }
  57. SharedPreferences.Editor editor = mShared.edit(); // 获得编辑器的对象
  58. editor.putString("name", name); // 添加一个名叫name的字符串参数
  59. editor.putInt("age", Integer.parseInt(age)); // 添加一个名叫age的整型参数
  60. editor.putLong("height", Long.parseLong(height)); // 添加一个名叫height的长整型参数
  61. editor.putFloat("weight", Float.parseFloat(weight)); // 添加一个名叫weight的浮点数参数
  62. editor.putBoolean("married", bMarried); // 添加一个名叫married的布尔型参数
  63. editor.putString("update_time", DateUtil.getNowDateTime("yyyy-MM-dd HH:mm:ss"));
  64. editor.commit(); // 提交编辑器中的修改
  65. ToastUtil.show(this, "数据已写入共享参数");
  66. }
  67. }
  68. }

activity_share_readXML文件

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="match_parent"
  3. android:layout_height="match_parent"
  4. android:orientation="vertical"
  5. android:padding="5dp" >
  6. <TextView
  7. android:id="@+id/tv_share"
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:textColor="@color/black"
  11. android:textSize="17sp" />
  12. </LinearLayout>

activity_share_writeXML文件

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="match_parent"
  3. android:layout_height="match_parent"
  4. android:orientation="vertical"
  5. android:padding="5dp" >
  6. <RelativeLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="40dp" >
  9. <TextView
  10. android:id="@+id/tv_name"
  11. android:layout_width="wrap_content"
  12. android:layout_height="match_parent"
  13. android:gravity="center"
  14. android:text="姓名:"
  15. android:textColor="@color/black"
  16. android:textSize="17sp" />
  17. <EditText
  18. android:id="@+id/et_name"
  19. android:layout_width="match_parent"
  20. android:layout_height="match_parent"
  21. android:layout_marginBottom="3dp"
  22. android:layout_marginTop="3dp"
  23. android:layout_toRightOf="@+id/tv_name"
  24. android:background="@drawable/editext_selector"
  25. android:gravity="left|center"
  26. android:hint="请输入姓名"
  27. android:inputType="text"
  28. android:maxLength="12"
  29. android:textColor="@color/black"
  30. android:textSize="17sp" />
  31. </RelativeLayout>
  32. <RelativeLayout
  33. android:layout_width="match_parent"
  34. android:layout_height="40dp" >
  35. <TextView
  36. android:id="@+id/tv_age"
  37. android:layout_width="wrap_content"
  38. android:layout_height="match_parent"
  39. android:gravity="center"
  40. android:text="年龄:"
  41. android:textColor="@color/black"
  42. android:textSize="17sp" />
  43. <EditText
  44. android:id="@+id/et_age"
  45. android:layout_width="match_parent"
  46. android:layout_height="match_parent"
  47. android:layout_marginBottom="3dp"
  48. android:layout_marginTop="3dp"
  49. android:layout_toRightOf="@+id/tv_age"
  50. android:background="@drawable/editext_selector"
  51. android:gravity="left|center"
  52. android:hint="请输入年龄"
  53. android:inputType="number"
  54. android:maxLength="2"
  55. android:textColor="@color/black"
  56. android:textSize="17sp" />
  57. </RelativeLayout>
  58. <RelativeLayout
  59. android:layout_width="match_parent"
  60. android:layout_height="40dp" >
  61. <TextView
  62. android:id="@+id/tv_height"
  63. android:layout_width="wrap_content"
  64. android:layout_height="match_parent"
  65. android:gravity="center"
  66. android:text="身高:"
  67. android:textColor="@color/black"
  68. android:textSize="17sp" />
  69. <EditText
  70. android:id="@+id/et_height"
  71. android:layout_width="match_parent"
  72. android:layout_height="match_parent"
  73. android:layout_marginBottom="3dp"
  74. android:layout_marginTop="3dp"
  75. android:layout_toRightOf="@+id/tv_height"
  76. android:background="@drawable/editext_selector"
  77. android:gravity="left|center"
  78. android:hint="请输入身高"
  79. android:inputType="number"
  80. android:maxLength="3"
  81. android:textColor="@color/black"
  82. android:textSize="17sp" />
  83. </RelativeLayout>
  84. <RelativeLayout
  85. android:layout_width="match_parent"
  86. android:layout_height="40dp" >
  87. <TextView
  88. android:id="@+id/tv_weight"
  89. android:layout_width="wrap_content"
  90. android:layout_height="match_parent"
  91. android:gravity="center"
  92. android:text="体重:"
  93. android:textColor="@color/black"
  94. android:textSize="17sp" />
  95. <EditText
  96. android:id="@+id/et_weight"
  97. android:layout_width="match_parent"
  98. android:layout_height="match_parent"
  99. android:layout_marginBottom="3dp"
  100. android:layout_marginTop="3dp"
  101. android:layout_toRightOf="@+id/tv_weight"
  102. android:background="@drawable/editext_selector"
  103. android:gravity="left|center"
  104. android:hint="请输入体重"
  105. android:inputType="numberDecimal"
  106. android:maxLength="5"
  107. android:textColor="@color/black"
  108. android:textSize="17sp" />
  109. </RelativeLayout>
  110. <RelativeLayout
  111. android:layout_width="match_parent"
  112. android:layout_height="40dp" >
  113. <CheckBox
  114. android:id="@+id/ck_married"
  115. android:layout_width="wrap_content"
  116. android:layout_height="match_parent"
  117. android:gravity="center"
  118. android:checked="false"
  119. android:text="已婚"
  120. android:textColor="@color/black"
  121. android:textSize="17sp" />
  122. </RelativeLayout>
  123. <Button
  124. android:id="@+id/btn_save"
  125. android:layout_width="match_parent"
  126. android:layout_height="wrap_content"
  127. android:text="保存到共享参数"
  128. android:textColor="@color/black"
  129. android:textSize="17sp" />
  130. </LinearLayout>

二、实现记住密码功能

通过共享参数可以真正的实现记住密码功能,用户下一次打开App时不用再次输入密码

 

LoginShareActivity类 

  1. package com.example.chpater06;
  2. import android.annotation.SuppressLint;
  3. import android.app.AlertDialog;
  4. import android.content.DialogInterface;
  5. import android.content.Intent;
  6. import android.content.SharedPreferences;
  7. import android.os.Bundle;
  8. import android.text.Editable;
  9. import android.text.TextWatcher;
  10. import android.view.View;
  11. import android.widget.Button;
  12. import android.widget.CheckBox;
  13. import android.widget.CompoundButton;
  14. import android.widget.EditText;
  15. import android.widget.RadioButton;
  16. import android.widget.RadioGroup;
  17. import android.widget.TextView;
  18. import android.widget.Toast;
  19. import androidx.appcompat.app.AppCompatActivity;
  20. import com.example.chpater06.util.ViewUtil;
  21. import java.util.Random;
  22. @SuppressLint("DefaultLocale")
  23. public class LoginShareActivity extends AppCompatActivity implements View.OnClickListener {
  24. private RadioGroup rg_login; // 声明一个单选组对象
  25. private RadioButton rb_password; // 声明一个单选按钮对象
  26. private RadioButton rb_verifycode; // 声明一个单选按钮对象
  27. private EditText et_phone; // 声明一个编辑框对象
  28. private TextView tv_password; // 声明一个文本视图对象
  29. private EditText et_password; // 声明一个编辑框对象
  30. private Button btn_forget; // 声明一个按钮控件对象
  31. private CheckBox ck_remember; // 声明一个复选框对象
  32. private int mRequestCode = 0; // 跳转页面时的请求代码
  33. private boolean bRemember = false; // 是否记住密码
  34. private String mPassword = "111111"; // 默认密码
  35. private String mVerifyCode; // 验证码
  36. private SharedPreferences mShared; // 声明一个共享参数对象
  37. @Override
  38. protected void onCreate(Bundle savedInstanceState) {
  39. super.onCreate(savedInstanceState);
  40. setContentView(R.layout.activity_login_share);
  41. rg_login = findViewById(R.id.rg_login);
  42. rb_password = findViewById(R.id.rb_password);
  43. rb_verifycode = findViewById(R.id.rb_verifycode);
  44. et_phone = findViewById(R.id.et_phone);
  45. tv_password = findViewById(R.id.tv_password);
  46. et_password = findViewById(R.id.et_password);
  47. btn_forget = findViewById(R.id.btn_forget);
  48. ck_remember = findViewById(R.id.ck_remember);
  49. // 给rg_login设置单选监听器
  50. rg_login.setOnCheckedChangeListener(new RadioListener());
  51. // 给ck_remember设置勾选监听器
  52. ck_remember.setOnCheckedChangeListener(new CheckListener());
  53. // 给et_phone添加文本变更监听器
  54. et_phone.addTextChangedListener(new HideTextWatcher(et_phone, 11));
  55. // 给et_password添加文本变更监听器
  56. et_password.addTextChangedListener(new HideTextWatcher(et_password, 11));
  57. btn_forget.setOnClickListener(this);
  58. findViewById(R.id.btn_login).setOnClickListener(this);
  59. // 从share_login.xml获取共享参数对象
  60. mShared = getSharedPreferences("share_login", MODE_PRIVATE);
  61. // 获取共享参数保存的手机号码
  62. String phone = mShared.getString("phone", "");
  63. // 获取共享参数保存的密码
  64. String password = mShared.getString("password", "");
  65. et_phone.setText(phone); // 往手机号码编辑框填写上次保存的手机号
  66. et_password.setText(password); // 往密码编辑框填写上次保存的密码
  67. }
  68. // 定义登录方式的单选监听器
  69. private class RadioListener implements RadioGroup.OnCheckedChangeListener {
  70. @Override
  71. public void onCheckedChanged(RadioGroup group, int checkedId) {
  72. if (checkedId == R.id.rb_password) { // 选择了密码登录
  73. tv_password.setText("登录密码:");
  74. et_password.setHint("请输入密码");
  75. btn_forget.setText("忘记密码");
  76. ck_remember.setVisibility(View.VISIBLE);
  77. } else if (checkedId == R.id.rb_verifycode) { // 选择了验证码登录
  78. tv_password.setText(" 验证码:");
  79. et_password.setHint("请输入验证码");
  80. btn_forget.setText("获取验证码");
  81. ck_remember.setVisibility(View.INVISIBLE);
  82. }
  83. }
  84. }
  85. // 定义是否记住密码的勾选监听器
  86. private class CheckListener implements CompoundButton.OnCheckedChangeListener {
  87. @Override
  88. public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
  89. if (buttonView.getId() == R.id.ck_remember) {
  90. bRemember = isChecked;
  91. }
  92. }
  93. }
  94. // 定义一个编辑框监听器,在输入文本达到指定长度时自动隐藏输入法
  95. private class HideTextWatcher implements TextWatcher {
  96. private EditText mView; // 声明一个编辑框对象
  97. private int mMaxLength; // 声明一个最大长度变量
  98. public HideTextWatcher(EditText v, int maxLength) {
  99. super();
  100. mView = v;
  101. mMaxLength = maxLength;
  102. }
  103. // 在编辑框的输入文本变化前触发
  104. public void beforeTextChanged(CharSequence s, int start, int count, int after) {}
  105. // 在编辑框的输入文本变化时触发
  106. public void onTextChanged(CharSequence s, int start, int before, int count) {}
  107. // 在编辑框的输入文本变化后触发
  108. public void afterTextChanged(Editable s) {
  109. String str = s.toString(); // 获得已输入的文本字符串
  110. // 输入文本达到11位(如手机号码),或者达到6位(如登录密码)时关闭输入法
  111. if ((str.length() == 11 && mMaxLength == 11)
  112. || (str.length() == 6 && mMaxLength == 6)) {
  113. ViewUtil.hideOneInputMethod(LoginShareActivity.this, mView); // 隐藏输入法软键盘
  114. }
  115. }
  116. }
  117. @Override
  118. public void onClick(View v) {
  119. String phone = et_phone.getText().toString();
  120. if (v.getId() == R.id.btn_forget) { // 点击了“忘记密码”按钮
  121. if (phone.length() < 11) { // 手机号码不足11
  122. Toast.makeText(this, "请输入正确的手机号", Toast.LENGTH_SHORT).show();
  123. return;
  124. }
  125. if (rb_password.isChecked()) { // 选择了密码方式校验,此时要跳到找回密码页面
  126. // 以下携带手机号码跳转到找回密码页面
  127. Intent intent = new Intent(this, LoginForgetActivity.class);
  128. intent.putExtra("phone", phone);
  129. startActivityForResult(intent, mRequestCode); // 携带意图返回上一个页面
  130. } else if (rb_verifycode.isChecked()) { // 选择了验证码方式校验,此时要生成六位随机数字验证码
  131. // 生成六位随机数字的验证码
  132. mVerifyCode = String.format("%06d", new Random().nextInt(999999));
  133. // 以下弹出提醒对话框,提示用户记住六位验证码数字
  134. AlertDialog.Builder builder = new AlertDialog.Builder(this);
  135. builder.setTitle("请记住验证码");
  136. builder.setMessage("手机号" + phone + ",本次验证码是" + mVerifyCode + ",请输入验证码");
  137. builder.setPositiveButton("好的", null);
  138. AlertDialog alert = builder.create();
  139. alert.show(); // 显示提醒对话框
  140. }
  141. } else if (v.getId() == R.id.btn_login) { // 点击了“登录”按钮
  142. if (phone.length() < 11) { // 手机号码不足11
  143. Toast.makeText(this, "请输入正确的手机号", Toast.LENGTH_SHORT).show();
  144. return;
  145. }
  146. if (rb_password.isChecked()) { // 密码方式校验
  147. if (!et_password.getText().toString().equals(mPassword)) {
  148. Toast.makeText(this, "请输入正确的密码", Toast.LENGTH_SHORT).show();
  149. } else { // 密码校验通过
  150. loginSuccess(); // 提示用户登录成功
  151. }
  152. } else if (rb_verifycode.isChecked()) { // 验证码方式校验
  153. if (!et_password.getText().toString().equals(mVerifyCode)) {
  154. Toast.makeText(this, "请输入正确的验证码", Toast.LENGTH_SHORT).show();
  155. } else { // 验证码校验通过
  156. loginSuccess(); // 提示用户登录成功
  157. }
  158. }
  159. }
  160. }
  161. // 从下一个页面携带参数返回当前页面时触发
  162. @Override
  163. protected void onActivityResult(int requestCode, int resultCode, Intent data) {
  164. super.onActivityResult(requestCode, resultCode, data);
  165. if (requestCode == mRequestCode && data != null) {
  166. // 用户密码已改为新密码,故更新密码变量
  167. mPassword = data.getStringExtra("new_password");
  168. }
  169. }
  170. // 从修改密码页面返回登录页面,要清空密码的输入框
  171. @Override
  172. protected void onRestart() {
  173. super.onRestart();
  174. et_password.setText("");
  175. }
  176. // 校验通过,登录成功
  177. private void loginSuccess() {
  178. String desc = String.format("您的手机号码是%s,恭喜你通过登录验证,点击“确定”按钮返回上个页面",
  179. et_phone.getText().toString());
  180. // 以下弹出提醒对话框,提示用户登录成功
  181. AlertDialog.Builder builder = new AlertDialog.Builder(this);
  182. builder.setTitle("登录成功");
  183. builder.setMessage(desc);
  184. builder.setPositiveButton("确定返回", new DialogInterface.OnClickListener() {
  185. @Override
  186. public void onClick(DialogInterface dialog, int which) {
  187. finish(); // 结束当前的活动页面
  188. }
  189. });
  190. builder.setNegativeButton("我再看看", null);
  191. AlertDialog alert = builder.create();
  192. alert.show(); // 显示提醒对话框
  193. // 如果勾选了“记住密码”,就把手机号码和密码都保存到共享参数中
  194. if (bRemember) {
  195. SharedPreferences.Editor editor = mShared.edit(); // 获得编辑器的对象
  196. editor.putString("phone", et_phone.getText().toString()); // 添加名叫phone的手机号码
  197. editor.putString("password", et_password.getText().toString()); // 添加名叫password的密码
  198. editor.commit(); // 提交编辑器中的修改
  199. }
  200. }
  201. }

activity_login_shareXML文件

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="match_parent"
  3. android:layout_height="match_parent"
  4. android:orientation="vertical"
  5. android:padding="5dp" >
  6. <RadioGroup
  7. android:id="@+id/rg_login"
  8. android:layout_width="match_parent"
  9. android:layout_height="50dp"
  10. android:orientation="horizontal" >
  11. <RadioButton
  12. android:id="@+id/rb_password"
  13. android:layout_width="0dp"
  14. android:layout_height="match_parent"
  15. android:layout_weight="1"
  16. android:checked="true"
  17. android:gravity="left|center"
  18. android:text="密码登录"
  19. android:textColor="@color/black"
  20. android:textSize="17sp" />
  21. <RadioButton
  22. android:id="@+id/rb_verifycode"
  23. android:layout_width="0dp"
  24. android:layout_height="match_parent"
  25. android:layout_weight="1"
  26. android:checked="false"
  27. android:gravity="left|center"
  28. android:text="验证码登录"
  29. android:textColor="@color/black"
  30. android:textSize="17sp" />
  31. </RadioGroup>
  32. <RelativeLayout
  33. android:layout_width="match_parent"
  34. android:layout_height="50dp" >
  35. <TextView
  36. android:id="@+id/tv_phone"
  37. android:layout_width="wrap_content"
  38. android:layout_height="match_parent"
  39. android:gravity="center"
  40. android:text="手机号码:"
  41. android:textColor="@color/black"
  42. android:textSize="17sp" />
  43. <EditText
  44. android:id="@+id/et_phone"
  45. android:layout_width="match_parent"
  46. android:layout_height="match_parent"
  47. android:layout_marginBottom="5dp"
  48. android:layout_marginTop="5dp"
  49. android:layout_toRightOf="@+id/tv_phone"
  50. android:background="@drawable/editext_selector"
  51. android:gravity="left|center"
  52. android:hint="请输入手机号码"
  53. android:inputType="number"
  54. android:maxLength="11"
  55. android:textColor="@color/black"
  56. android:textSize="17sp" />
  57. </RelativeLayout>
  58. <RelativeLayout
  59. android:layout_width="match_parent"
  60. android:layout_height="50dp" >
  61. <TextView
  62. android:id="@+id/tv_password"
  63. android:layout_width="wrap_content"
  64. android:layout_height="match_parent"
  65. android:gravity="center"
  66. android:text="登录密码:"
  67. android:textColor="@color/black"
  68. android:textSize="17sp" />
  69. <RelativeLayout
  70. android:layout_width="match_parent"
  71. android:layout_height="match_parent"
  72. android:layout_toRightOf="@+id/tv_password" >
  73. <EditText
  74. android:id="@+id/et_password"
  75. android:layout_width="match_parent"
  76. android:layout_height="match_parent"
  77. android:layout_marginBottom="5dp"
  78. android:layout_marginTop="5dp"
  79. android:background="@drawable/editext_selector"
  80. android:gravity="left|center"
  81. android:hint="请输入密码"
  82. android:inputType="numberPassword"
  83. android:maxLength="6"
  84. android:textColor="@color/black"
  85. android:textSize="17sp" />
  86. <Button
  87. android:id="@+id/btn_forget"
  88. android:layout_width="wrap_content"
  89. android:layout_height="match_parent"
  90. android:layout_alignParentRight="true"
  91. android:gravity="center"
  92. android:text="忘记密码"
  93. android:textColor="@color/black"
  94. android:textSize="17sp" />
  95. </RelativeLayout>
  96. </RelativeLayout>
  97. <CheckBox
  98. android:id="@+id/ck_remember"
  99. android:layout_width="match_parent"
  100. android:layout_height="wrap_content"
  101. android:checked="false"
  102. android:padding="10dp"
  103. android:text="记住密码"
  104. android:textColor="@color/black"
  105. android:textSize="17sp" />
  106. <Button
  107. android:id="@+id/btn_login"
  108. android:layout_width="match_parent"
  109. android:layout_height="wrap_content"
  110. android:text="登  录"
  111. android:textColor="@color/black"
  112. android:textSize="20sp" />
  113. </LinearLayout>

创作不易 觉得有帮助请点赞关注收藏

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码大牛/article/detail/60757
推荐阅读
相关标签
  

闽ICP备14008679号