EasyClick原生UI连载 一

EasyClick原生UI连载目录

  • EasyClick原生UI教程
  • EasyClick 原生UI 之常用控件
    • TextView 控件
      • 私有属性
      • 例子
    • button 控件
      • 私有属性
      • 例子
    • EditText 输入框控件
      • 私有属性
      • 例子
    • 注意

EasyClick原生UI教程

讲师:Mr-老鬼,QQ:1156346325
EasyClick 原生UI教程电梯直达
EasyClick 原生UI教程总纲

EasyClick 原生UI 之常用控件

TextView 控件

私有属性

EasyClick原生UI连载 一_第1张图片

例子

 <TextView android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:layout_weight="1"
           android:lines="10"
           android:ellipsize="end"
           android:textColor="#000000"
           android:gravity="center"
           android:maxLength="100"
           android:text="姓名: " />

button 控件

私有属性

EasyClick原生UI连载 一_第2张图片

例子

 <Button android:layout_height="wrap_parent"
         android:layout_width="match_parent"
         android:tag="btn"
         android:text="按钮"
         android:textColor="#669999"
         android:textSize="14dp"
         android:gravity="center"
/>

EditText 输入框控件

私有属性

EasyClick原生UI连载 一_第3张图片

例子

<EditText android:layout_height="wrap_parent"
          android:layout_width="match_parent"
          android:tag="btn"
          android:text="按钮"
          android:textColor="#669999"
          android:textSize="14dp"
          android:gravity="center"
          android:maxLength="12"
          android:hint="我是提示"
    />

注意

文中没有提到的属性请参考
公有属性: EasyClick 原生UI连载 三
---------------------------------------版权声明------------------------------------------------------
版权所有~Mr-老鬼 ~转载请注明原文地址。
免责声明:本文所有的教程仅限交流学习使用不得用于违法用途,造成的法律后果本人不承担责任。

你可能感兴趣的:(#,android)