android-使用PopupWindow实现随机排列的自定义密码键盘

// TODO Auto-generated method stub

int index = editText.getSelectionStart();

String str = randomKeys[9]+“”;

editable.insert(index, str);

}

});

btn_del.setOnClickListener(new OnClickListener() {

@Override

public void onClick(View v) {

// TODO Auto-generated method stub

try {

int index = editText.getSelectionStart();

editable.delete(index - 1, index);

} catch (Exception e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

});

btn_clear.setOnClickListener(new OnClickListener() {

@Override

public void onClick(View v) {

// TODO Auto-generated method stub

editable.clear();

}

});

btn_conf.setOnClickListener(new OnClickListener() {

@Override

public void onClick(View v) {

// TODO Auto-generated method stub

popupWindow.dismiss();

button.requestFocus();

}

});

// 禁止EditText获得焦点后弹出系统键盘

editText.setInputType(InputType.TYPE_NULL);

editText.setOnFocusChangeListener(new OnFocusChangeListener() {

@Override

public void onFocusChange(View arg0, boolean arg1) {

// TODO Auto-generated method stub

if (arg1) {

updateKeyBoard();

popupWindow.showAsDropDown(editText, 0, 0);

popupWindow.update();

}

}

});

}

private void updateKeyBoard() {

randomKeys = getRandomNum();

btn0.setText(randomKeys[0] + “”);

btn1.setText(randomKeys[1] + “”);

btn2.setText(randomKeys[2] + “”);

btn3.setText(randomKeys[3] + “”);

btn4.setText(randomKeys[4] + “”);

btn5.setText(randomKeys[5] + “”);

btn6.setText(randomKeys[6] + “”);

btn7.setText(randomKeys[7] + “”);

btn8.setText(randomKeys[8] + “”);

btn9.setText(randomKeys[9] + “”);

}

//生成随机的0-9 10个数字,且值各不相同

private int[] getRandomNum() {

Random random = new Random();

int[] data = new int[10];

boolean b;

boolean b2 = false;

boolean b3 = true;

int x;

for (int i = 0; i < 10; i++) {

b = true;

while (b) {

x = random.nextInt(10);

if (x == 0 && b3) {

b3 = false;

b = false;

}

for (int y : data) {

if (x == y) {

b2 = false;

break;

} else {

b2 = true;

}

}

if (b2) {

data[i] = x;

b = false;

break;

}

}

}

return data;

}

keyboard_bg_big.xml

<?xml version="1.0" encoding="utf-8"?>

<item

android:state_pressed=“true”

android:drawable=“@drawable/key11”/>

<item

android:state_focused=“true”

android:drawable=“@drawable/key12”/>

<item

android:state_focused=“false”

android:state_pressed=“false”

android:drawable=“@drawable/keyboard_key_style” />

keyboard_bg_small.xml

<?xml version="1.0" encoding="utf-8"?>

<item

android:state_pressed=“true”

android:drawable=“@drawable/key11”/>

<item

android:state_focused=“true”

android:drawable=“@drawable/key12”/>

<item

android:state_focused=“false”

android:state_pressed=“false”

android:drawable=“@drawable/keyboard_key_style” />

keyboard_bg_style.xml

<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android=“http://schemas.android.com/apk/res/android”

android:shape=“rectangle” >

<gradient

android:angle=“90.0”

android:endColor=“#ffffff”

android:startColor=“#ffffff” />

<corners

android:bottomLeftRadius=“6.0dip”

android:bottomRightRadius=“6.0dip”

android:topLeftRadius=“6.0dip”

android:topRightRadius=“6.0dip” />

keyboard_key_style.xml

<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android=“http://schemas.android.com/apk/res/android”

android:shape=“rectangle” >

<size

android:height=“36.0dip”

android:width=“80.0dip” />

<gradient

android:angle=“90.0”

android:endColor=“#D7D7D7”

android:startColor=“#D7D7D7” />

<corners

android:bottomLeftRadius=“6.0dip”

android:bottomRightRadius=“6.0dip”

android:topLeftRadius=“6.0dip”

android:topRightRadius=“6.0dip” />

random_keyboard.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”

android:background=“@drawable/keyboard_bg_style”

android:orientation=“vertical” >

<LinearLayout

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:layout_marginLeft=“3dp”

android:layout_marginRight=“3dp”

android:layout_marginTop=“3dp”

android:orientation=“horizontal” >

<Button

android:id=“@+id/keyboard_btn1”

android:layout_width=“fill_parent”

android:layout_height=“55dp”

android:layout_weight=“1”

android:background=“@drawable/keyboard_bg_small”

android:gravity=“center_horizontal|center_vertical”

android:text=“1”

android:textSize=“20dp” />

<Button

android:id=“@+id/keyboard_btn2”

android:layout_width=“fill_parent”

android:layout_height=“55dp”

android:layout_marginLeft=“3dp”

android:layout_weight=“1”

android:background=“@drawable/keyboard_bg_small”

android:gravity=“center_horizontal|center_vertical”

android:text=“2”

android:textSize=“20dp” />

<Button

android:id=“@+id/keyboard_btn3”

android:layout_width=“fill_parent”

android:layout_height=“55dp”

android:layout_marginLeft=“3dp”

android:layout_weight=“1”

android:background=“@drawable/keyboard_bg_small”

android:gravity=“center_horizontal|center_vertical”

android:text=“3”

android:textSize=“20dp” />

<Button

android:id=“@+id/keyboard_btn9”

android:layout_width=“fill_parent”

android:layout_height=“55dp”

android:layout_marginLeft=“3dp”

android:layout_weight=“1”

android:background=“@drawable/keyboard_bg_small”

android:gravity=“center_horizontal|center_vertical”

android:text=“.”

android:textSize=“20dp” />

<LinearLayout

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:layout_marginLeft=“3dp”

android:layout_marginRight=“3dp”

android:layout_marginTop=“3dp”

android:orientation=“horizontal” >

<Button

android:id=“@+id/keyboard_btn4”

android:layout_width=“fill_parent”

android:layout_height=“55dp”

android:layout_weight=“1”

android:background=“@drawable/keyboard_bg_small”

android:gravity=“center_horizontal|center_vertical”

android:text=“4”

android:textSize=“20dp” />

<Button

android:id=“@+id/keyboard_btn5”

android:layout_width=“fill_parent”

android:layout_height=“55dp”

android:layout_marginLeft=“3dp”

android:layout_weight=“1”

android:background=“@drawable/keyboard_bg_small”

android:gravity=“center_horizontal|center_vertical”

android:text=“5”

android:textSize=“20dp” />

<Button

android:id=“@+id/keyboard_btn6”

android:layout_width=“fill_parent”

android:layout_height=“55dp”

android:layout_marginLeft=“3dp”

android:layout_weight=“1”

android:background=“@drawable/keyboard_bg_small”

android:gravity=“center_horizontal|center_vertical”

android:text=“6”

android:textSize=“20dp” />

<Button

android:id=“@+id/keyboard_btn0”

android:layout_width=“fill_parent”

android:layout_height=“55dp”

android:layout_marginLeft=“3dp”

android:layout_weight=“1”

android:background=“@drawable/keyboard_bg_small”

android:gravity=“center_horizontal|center_vertical”

android:text=“0”

android:textSize=“20dp” />

<LinearLayout

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:layout_marginLeft=“3dp”

android:layout_marginRight=“3dp”

android:layout_marginTop=“3dp”

android:orientation=“horizontal” >

<Button

android:id=“@+id/keyboard_btn7”

android:layout_width=“fill_parent”

android:layout_height=“55dp”

android:layout_weight=“3”

android:background=“@drawable/keyboard_bg_small”

android:gravity=“center_horizontal|center_vertical”

android:text=“7”

android:textSize=“20dp” />

<Button

android:id=“@+id/keyboard_btn8”

android:layout_width=“fill_parent”

android:layout_height=“55dp”

android:layout_marginLeft=“3dp”

android:layout_weight=“3”

android:background=“@drawable/keyboard_bg_small”

android:gravity=“center_horizontal|center_vertical”

android:text=“8”

总结

本文讲解了我对Android开发现状的一些看法,也许有些人会觉得我的观点不对,但我认为没有绝对的对与错,一切交给时间去证明吧!愿与各位坚守的同胞们互相学习,共同进步!
《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》点击传送门,即可获取!

  • 21
    点赞
  • 12
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
当您需要更高级的弹窗样式和交互时,可以使用 PopupWindow 来创建自定义布局的弹窗。下面是使用 PopupWindow 创建自定义布局的步骤: 1. 创建自定义布局文件:首先,创建一个 XML 文件来定义您的自定义布局。例如,您可以创建一个名为 `custom_popup.xml` 的文件,并在其中定义您希望显示的布局。 2. 实例化 PopupWindow:在您的 Activity 或 Fragment 中,实例化 PopupWindow 对象。 ```java LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE); View customView = inflater.inflate(R.layout.custom_popup, null); PopupWindow popupWindow = new PopupWindow(customView, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); ``` 3. 设置 PopupWindow 属性:根据需要,设置 PopupWindow 的属性,例如背景、动画效果、焦点等。 ```java popupWindow.setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT)); popupWindow.setFocusable(true); // 设置动画效果 popupWindow.setAnimationStyle(R.style.PopupAnimation); ``` 4. 设置布局中的控件和事件:通过 `customView` 获取布局中的控件,并设置相应的事件监听器。 ```java Button button = customView.findViewById(R.id.button); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // 处理点击事件 } }); ``` 5. 显示弹窗:使用 `showAtLocation()` 或 `showAsDropDown()` 方法显示弹窗。`showAtLocation()` 方法可以显示在指定的位置,而 `showAsDropDown()` 方法则可以显示在某个视图的下方。 ```java View anchorView = findViewById(R.id.anchor_view); // 锚点视图 popupWindow.showAsDropDown(anchorView); // 或者使用 showAtLocation() 方法 ``` 这样,您就可以使用 PopupWindow 创建自定义布局的弹窗。希望对您有所帮助!如果有任何问题,请随时提问。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值