Skip to content

Commit

Permalink
添加光标
Browse files Browse the repository at this point in the history
  • Loading branch information
maning0303 committed Aug 6, 2022
1 parent a427e29 commit 18cc14e
Show file tree
Hide file tree
Showing 18 changed files with 359 additions and 193 deletions.
Binary file modified .idea/caches/build_file_checksums.ser
Binary file not shown.
18 changes: 1 addition & 17 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 12 additions & 3 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 0 additions & 12 deletions .idea/runConfigurations.xml

This file was deleted.

159 changes: 88 additions & 71 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Android验证码和密码输入框,能自定义输入框个数和样式(连

## 截图:
![](https://github.com/maning0303/MNPasswordEditText/raw/master/screenshots/mn_pswedittext_001.jpeg)
![](https://github.com/maning0303/MNPasswordEditText/raw/master/screenshots/mn_pswedittext_002.jpeg)


## 如何添加
Expand Down Expand Up @@ -41,78 +42,88 @@ Android验证码和密码输入框,能自定义输入框个数和样式(连
### 1:自定义参数介绍:
``` java

<declare-styleable name="MNPasswordEditText">
<!--密码框的颜色-->
<attr name="mnPsw_border_color" format="color" />
<!--密码框选中的颜色-->
<attr name="mnPsw_border_selected_color" format="color" />
<!--密码文字的颜色,圆形密码颜色-->
<attr name="mnPsw_text_color" format="color" />
<!--密码框的圆角-->
<attr name="mnPsw_border_radius" format="dimension" />
<!--密码框的线的大小-->
<attr name="mnPsw_border_width" format="dimension" />
<!--密码框的每个间隔,只有样式2才起作用-->
<attr name="mnPsw_item_margin" format="dimension" />
<!--密码框背景色-->
<attr name="mnPsw_background_color" format="color" />
<!--密码框输入的模式:4.明文,3.文字,2.图片,1.圆形-->
<attr name="mnPsw_mode" format="enum">
<!--圆形默认-->
<enum name="Circle" value="1" />
<!--图片-->
<enum name="Bitmap" value="2" />
<!--文本-->
<enum name="Text" value="3" />
<!--原始-->
<enum name="OriginalText" value="4" />
</attr>
<!--密码框样式: 1.连在一起 2.分开单独显示 3.下划线形式-->
<attr name="mnPsw_style" format="enum">
<!--连在一起-->
<enum name="StyleDefault" value="1" />
<!--单独-->
<enum name="StyleOneself" value="2" />
<!--下划线形式-->
<enum name="StyleUnderLine" value="3" />
</attr>
<!--密码文字遮盖-->
<attr name="mnPsw_cover_text" format="string" />
<!--密码图片遮盖-->
<attr name="mnPsw_cover_bitmap_id" format="reference" />
<!--密码圆形遮盖颜色-->
<attr name="mnPsw_cover_circle_color" format="color" />
<!--密码圆形遮盖半径-->
<attr name="mnPsw_cover_circle_radius" format="dimension" />
<!--密码图片遮盖长宽-->
<attr name="mnPsw_cover_bitmap_width" format="dimension" />

</declare-styleable>
<declare-styleable name="MNPasswordEditText">
<!--密码框的颜色-->
<attr name="psw_border_color" format="color" />
<!--密码框选中的颜色-->
<attr name="psw_border_selected_color" format="color" />
<!--密码文字的颜色,圆形密码颜色-->
<attr name="psw_text_color" format="color" />
<!--密码框的圆角-->
<attr name="psw_border_radius" format="dimension" />
<!--密码框的线的大小-->
<attr name="psw_border_width" format="dimension" />
<!--密码框的每个间隔,只有样式2才起作用-->
<attr name="psw_item_margin" format="dimension" />
<!--密码框背景色-->
<attr name="psw_background_color" format="color" />
<!--密码框输入的模式:4.明文,3.文字,2.图片,1.圆形-->
<attr name="psw_mode" format="enum">
<!--圆形默认-->
<enum name="Circle" value="1" />
<!--图片-->
<enum name="Bitmap" value="2" />
<!--文本-->
<enum name="Text" value="3" />
<!--原始-->
<enum name="OriginalText" value="4" />
</attr>
<!--密码框样式: 1.连在一起 2.分开单独显示 3.下划线形式-->
<attr name="psw_style" format="enum">
<!--连在一起-->
<enum name="StyleDefault" value="1" />
<!--单独-->
<enum name="StyleOneself" value="2" />
<!--下划线形式-->
<enum name="StyleUnderLine" value="3" />
</attr>
<!--密码文字遮盖-->
<attr name="psw_cover_text" format="string" />
<!--密码图片遮盖-->
<attr name="psw_cover_bitmap_id" format="reference" />
<!--密码圆形遮盖颜色-->
<attr name="psw_cover_circle_color" format="color" />
<!--密码圆形遮盖半径-->
<attr name="psw_cover_circle_radius" format="dimension" />
<!--密码图片遮盖长宽-->
<attr name="psw_cover_bitmap_width" format="dimension" />
<!--是否显示光标-->
<attr name="psw_show_cursor" format="boolean" />
<!--光标颜色-->
<attr name="psw_cursor_color" format="color" />
<!--光标高度-->
<attr name="psw_cursor_height" format="dimension" />
<!--光标宽度-->
<attr name="psw_cursor_width" format="dimension" />
<!--光标圆角-->
<attr name="psw_cursor_corner_radius" format="dimension" />

</declare-styleable>

```

### 2:布局文件使用(详细查看Demo):
``` java

<com.maning.pswedittextlibrary.MNPasswordEditText
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginTop="10dp"
android:focusableInTouchMode="true"
android:inputType="number"
android:maxLength="6"
android:textSize="20sp"
app:mnPsw_background_color="#FFFFFF"
app:mnPsw_border_color="#7e7e7e"
app:mnPsw_border_radius="2dp"
app:mnPsw_border_width="2dp"
app:mnPsw_cover_bitmap_id="@mipmap/ic_launcher"
app:mnPsw_cover_bitmap_width="30dp"
app:mnPsw_item_margin="5dp"
app:mnPsw_mode="Bitmap"
app:mnPsw_style="StyleOneself"
app:mnPsw_text_color="#393939"
/>
<com.maning.pswedittextlibrary.MNPasswordEditText
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginTop="10dp"
android:focusableInTouchMode="true"
android:inputType="number"
android:maxLength="6"
android:textSize="20sp"
app:psw_border_color="#267eb4"
app:psw_border_radius="4dp"
app:psw_border_selected_color="#dc10a2"
app:psw_border_width="2dp"
app:psw_cover_text="密"
app:psw_cursor_width="10dp"
app:psw_item_margin="10dp"
app:psw_mode="Text"
app:psw_show_cursor="true"
app:psw_style="StyleOneself"
app:psw_text_color="#393939" /

```

Expand All @@ -136,21 +147,27 @@ Android验证码和密码输入框,能自定义输入框个数和样式(连
## 其他详情请查看Demo


## 版本记录:
v1.0.4:
1.新增光标显示
2.自定义属性名称调整


## 推荐:
Name | Describe |
--- | --- |
[GankMM](https://github.com/maning0303/GankMM) | (Material Design & MVP & Retrofit + OKHttp & RecyclerView ...)Gank.io Android客户端:每天一张美女图片,一个视频短片,若干Android,iOS等程序干货,周一到周五每天更新,数据全部由 干货集中营 提供,持续更新。 |
[MNUpdateAPK](https://github.com/maning0303/MNUpdateAPK) | Android APK 版本更新的下载和安装,适配7.0,简单方便。 |
[MNUpdateAPK](https://github.com/maning0303/MNUpdateAPK) | Android APK 版本更新的下载和安装 |
[MNImageBrowser](https://github.com/maning0303/MNImageBrowser) | 交互特效的图片浏览框架,微信向下滑动动态关闭 |
[MNCalendar](https://github.com/maning0303/MNCalendar) | 简单的日历控件练习,水平方向日历支持手势滑动切换,跳转月份;垂直方向日历选取区间范围。 |
[MClearEditText](https://github.com/maning0303/MClearEditText) | 带有删除功能的EditText |
[MNPasswordEditText](https://github.com/maning0303/MNPasswordEditText) | 类似微信支付宝的密码输入框。 |
[MNCrashMonitor](https://github.com/maning0303/MNCrashMonitor) | Debug监听程序崩溃日志,展示崩溃日志列表,方便自己平时调试。 |
[MNProgressHUD](https://github.com/maning0303/MNProgressHUD) | MNProgressHUD是对常用的自定义弹框封装,加载ProgressDialog,状态显示的StatusDialog和自定义Toast,支持背景颜色,圆角,边框和文字的自定义。 |
[MNXUtilsDB](https://github.com/maning0303/MNXUtilsDB) | xUtils3 数据库模块单独抽取出来,方便使用。 |
[MNVideoPlayer](https://github.com/maning0303/MNVideoPlayer) | SurfaceView + MediaPlayer 实现的视频播放器,支持横竖屏切换,手势快进快退、调节音量,亮度等。------代码简单,新手可以看一看。 |
[MNZXingCode](https://github.com/maning0303/MNZXingCode) | 快速集成二维码扫描和生成二维码 |
[MNMLKitScanner](https://github.com/maning0303/MNMLKitScanner) | 基于Google ML Kit 快速集成二维码扫描 |
[MNChangeSkin](https://github.com/maning0303/MNChangeSkin) | Android夜间模式,通过Theme实现 |
[MNVideoPlayer](https://github.com/maning0303/MNVideoPlayer) | SurfaceView + MediaPlayer 实现的视频播放器,支持横竖屏切换,手势快进快退、调节音量,亮度等。------代码简单,新手可以看一看。 |
[SwitcherView](https://github.com/maning0303/SwitcherView) | 垂直滚动的广告栏文字展示。 |
[MNPasswordEditText](https://github.com/maning0303/MNPasswordEditText) | 类似微信支付宝的密码输入框。 |
[MNCalendar](https://github.com/maning0303/MNCalendar) | 简单的日历控件练习,水平方向日历支持手势滑动切换,跳转月份;垂直方向日历选取区间范围。 |
[MNSwipeToLoadDemo](https://github.com/maning0303/MNSwipeToLoadDemo) | 利用SwipeToLoadLayout实现的各种下拉刷新效果(饿了吗,京东,百度外卖,美团外卖,天猫下拉刷新等)。 |

11 changes: 7 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 28
compileSdkVersion 29
defaultConfig {
applicationId "com.maning.mnpasswordedittext"
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName "1.0"
versionCode 104
versionName "1.0.4"
}
buildTypes {
release {
Expand All @@ -19,7 +19,10 @@ android {

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0'

implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.annotation:annotation:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
//测试Gradle
// implementation 'com.github.maning0303:MNPasswordEditText:V1.0.3'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.maning.mnpasswordedittext;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import androidx.appcompat.app.AppCompatActivity;
import android.widget.TextView;
import android.widget.Toast;

Expand Down
Loading

0 comments on commit 18cc14e

Please sign in to comment.