edittext 的一个案例

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:myAndroid = "http://schemas.android.com/apk/res/cn.loyulcare.android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/bgcolor"
    android:orientation="vertical">"

     <TextView
            android:id = "@+id/tvMineInfoTitle"
            android:text="@string/mine_info"
            android:layout_marginTop="10dp"
            style = "@style/NurserDetailsTitleStyle"/>
     <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <View
            android:layout_width="match_parent"
            android:layout_height="@dimen/divider_line_width"
            android:layout_marginTop="0dp"
            android:background="@color/divider_line_color" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/White"
            android:gravity="center_vertical"
            android:orientation="horizontal"
            android:paddingLeft="@dimen/layout_outline_padding"
            android:paddingRight="@dimen/layout_outline_padding" >

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:paddingBottom="@dimen/text_padding"
                android:paddingRight="@dimen/text_padding"
                android:paddingTop="@dimen/text_padding"
                android:text="姓名"
                android:textColor="@color/bgcolor"
                android:textSize="@dimen/content_text_size" />

            <EditText
                android:id="@+id/etName"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:background="@color/White"
                android:hint="@string/select_or_input_nickname"
                android:inputType="text"
                android:padding="@dimen/text_padding"
                android:textColor="@color/Black"
                android:textSize="@dimen/content_text_size" />

        </LinearLayout>

        <View
            android:layout_width="match_parent"
            android:layout_height="@dimen/divider_line_width"
            android:background="@color/divider_line_color" />
</LinearLayout>
时间: 2024-11-09 02:17:41

edittext 的一个案例的相关文章

通过一个案例彻底读懂10046 trace--字节级深入破解

转载请注明出处:http://blog.csdn.net/guoyjoe/article/details/37840583 2014.7.23晚20:30 Oracle support组猫大师分享<通过一个案例彻底读懂10046 trace--字节级深入破解> 如需了解很多其它课程请登录站点http://www.jianfengedu.com/Discuz/detail/id/56[技术分享QQ交流群]  252296815 国内首创成就QTune的顶级高手之课    -->我保证.认真

基于CAS线程安全的计算方法 java并发编程的艺术上的一个案例

package thread; import java.util.ArrayList; import java.util.List; import java.util.concurrent.atomic.AtomicInteger; /**  * @author  changxiangxiang  * @date 2014年8月6日 下午3:25:12  * @description  * @since  sprint2  */ public class Counter {     privat

urlretrieve关于循环下载的一个案例

# -*- coding: cp936 -*- #python 27 #xiaodeng #urlretrieve关于循环下载的一个案例 import urllib def down_list(stock_list):#传入list!!! for sid in stock_list: url='http://table.finance.yahoo.com/table.csv?s='+sid fname=sid+'.csv' ''' 文件的格式是一种,属于纯文本文件 注意,for循环和url的相对

Vue一个案例引发「内容分发slot」的最全总结

今天我们继续来说说 Vue,目前一直在自学 Vue 然后也开始做一个项目实战,我一直认为在实战中去发现问题然后解决问题的学习方式是最好的,所以我在学习一些 Vue 的理论之后,就开始自己利用业余时间做了一个项目,然后通过项目中的一些案例进行总结. 今天我们来说说 Vue 中的内容分发 <slot>,首先 Vue 实现了一套内容分发的 API,这套 API 是基于当前的 Web Components 规范草案,将 <slot> 元素作为承载内分发内容的出口,内容分发是 Vue 中一个

通过一个案例分析为什么使用ThreadLocal,使用它的好处是什么

在博客园里翻过很多博客,对高手们甚是敬畏,谢谢你们教会了我许多!我也尝试贡献一点自己的学习心得,这是我的第一篇博客,纯原创,谢谢. 这里我想聊的是ThreadLocal,本地线程变量.不单独作概念上的解释了,网上太多.我以一个案例为主线一步步说明为什么我们需要用ThreadLocal?使用ThreadLocal的好处又在哪儿?案例又怎么跟随我们的思维一步步改进.具体的说明都在案例的注释中. 第一步: 第二步: 第三步: 第三步的TransactionManager工具类: 第四步: 第四步中工具

微服务开发实战(spring-cloud/spring-cloud-alibaba/dubbo),一个案例,手把手带你入门

平日里,都是看别人的文章,虽开公众号写了不少,但像样的不多.年末了,年终总结也没来得及写,为了输出点像样的东西,立刻就着手这个系列.一个键一个字母的敲,边敲边写,文章还在持续更新中,直至完整.相信通过这个系列的系统练习,能有一个大跨步的提升. 专栏简介(是什么?) 结合SpringCloud.SpringCloudAlibaba.Dubbo等开源套件,基于某商场停车业务需求,进行微服务开发实战,力争通过一个案例的实操,掌握微服务架构中常用的技能点,轻松入门. 为什么要写这个专栏(为什么?) 微服

一个案例深入Python中的__new__和__init__

准备 在Python中,一切皆对象. 既然一切皆对象,那么类也是对象,我们暂且称之为 类对象.来个简单例子(本篇文章的所有案例都是运行在Python3.4中): class foo(): pass print(id(foo)) print(type(foo)) # 结果: # 46627056 # <class 'type'> 如果想深入了解一下,可以看:深刻理解Python中的元类(metaclass) 引入 最近在阅读tornado源码,发现在其源码中有很多类是这样的: class HTT

从一个案例窥探ORACLE的PASSWORD_VERSIONS

1.环境说明 ORACLE 客户端版本 11.2.0.1 ORACLE 服务端版本 12.2.0.1 2.异常现象 客户端(下文也称为Cp)访问服务端(Sp),报了一个错误: Figure 1 以错误码为关键字在网上查找原因,有网友建议把服务器的sqlnet.ora文件中的SQLNET.ALLOWED_LOGON_VERSION_SERVER参数 和 SQLNET.ALLOWED_LOGON_VERSION_CLIENT参数改为8(原值为12).如下图所示: Figure 2 改过之后重新连接,

系统架构培训:矩阵,封装,一个案例教你激发客户潜藏的需求!

在现实设计中,通过变化分析可以激发客户潜藏的需求?下面看一个例子. 一个美国某国际电子商务公司的订单处理系统.假设系统必须能够处理来自不同的国家(地区)的销售订单.最开始要求很简单:处理美国和加拿大的订单. 系统的需求清单如下: 要为加拿大和美国构建一个销售订单系统. 根据所在国家计算运费. 运费还应该以所在国家(地区)的货币支付. 在美国,税额应按当地计算. 使用美国邮政规则验证地址. 在加拿大,使用联邦快递发货,同时缴纳联邦政府销售税(GST)和地方销售税(PST).尽管这个需求已经很清楚,