zoukankan      html  css  js  c++  java
  • android讲义2之输入界面

    布局文件:

    android:selectAllOnFocus="true"  //如图"ggg"表示当EditText取得焦点会全选所有内容

    android:password="true"  //表示输入的内容为密码保护形式

    android:phoneNumber="true"  //表示输入的内容为数字形式

    android:background="@drawable/bg_border"  //指示background的内容在drawable文件夹的bg_border.xml文件名中

    bg_border.xml:

    <?xml version="1.0" encoding="UTF-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="#000000"/>
    <stroke android:width="2dip" android:color="#ff0000" />
    </shape>


  • 相关阅读:
    attr与prop
    Django框架学习
    库的操作
    javascript 基础知识
    进程
    正则表达式
    模块( collections , time , random , os , sys)
    内置函数
    生成器
    迭代器
  • 原文地址:https://www.cnblogs.com/lee0oo0/p/2380202.html
Copyright © 2011-2022 走看看