zoukankan
html css js c++ java
Android 字体和颜色
对于能够显示文字的控件(如TextView EditText RadioButton Button CheckBox Chronometer等等),你有时需要控制字体的大小。Android平台定义了三种字体大小。
java代码:
"?android:attr/textAppearanceLarge"
"?android:attr/textAppearanceMedium"
"?android:attr/textAppearanceSmall"
复制代码
使用方法为:
java代码:
android:textAppearance="?android:attr/textAppearanceLarge"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textAppearance="?android:attr/textAppearanceSmall"
或
style="?android:attr/textAppearanceLarge"
style="?android:attr/textAppearanceMedium"
style="?android:attr/textAppearanceSmall"
复制代码
字体颜色
java代码:
android:textColor="?android:attr/textColorPrimary"
android:textColor="?android:attr/textColorSecondary"
android:textColor="?android:attr/textColorTertiary"
android:textColor="?android:attr/textColorPrimaryInverse"
android:textColor="?android:attr/textColorSecondaryInverse"
ProgressBar
style="?android:attr/progressBarStyleHorizontal"
style="?android:attr/progressBarStyleLarge"
style="?android:attr/progressBarStyleSmall"
style="?android:attr/progressBarStyleSmallTitle"
复制代码
分隔符 横向:
java代码:
<View
android:layout_width="fill_parent"
android:layout_height="1dip"
android:background="?android:attr/listDivider" />
复制代码
纵向:
java代码:
<View android:layout_width="1dip"
android:layout_height="fill_parent"
android:background="?android:attr/listDivider" />
CheckBox
style="?android:attr/starStyle"
//类似标题栏效果的TextView
style="?android:attr/listSeparatorTextViewStyle"
//其它有用的样式
android:layout_height="?android:attr/listPreferredItemHeight"
android:paddingRight="?android:attr/scrollbarSize"
style="?android:attr/windowTitleBackgroundStyle"
style="?android:attr/windowTitleStyle"
android:layout_height="?android:attr/windowTitleSize"
android:background="?android:attr/windowBackground"
复制代码
View
,
字体
路漫漫其修远兮 吾将上下而求索
查看全文
相关阅读:
V2EX 上收藏Top200
在heroku上部署gost代理服务端
nano编辑器使用教程
Amazon EC2免费VPS防止超额被扣钱三大方法:流量 硬盘读写 运行时长
Go语言开发环境配置
HTML5 and CSS3 开发
使用 Eclipse PhoneGap 构建 Android 应用程序入门
脚本之家
CSS网页布局全精通
使用面向 iOS 的本机插件扩展 PhoneGap
原文地址:https://www.cnblogs.com/hudabing/p/3184027.html
最新文章
EPLAN 部件库局域网共享
ISO9000管理体系认证申请书
ISO 9000质量认证体系需要准备的资料清单
一生伏首拜阳明------<明朝那些事儿>
python3爬取页面内容并筛选
L2TP/IPSec一键安装脚本
外贸出口流程
SEO
WHMCS成功安装和使用方法及添加支付宝,PayPal收款教程
Centos 6.5 安装 ionCube PHP Loader
热门文章
LNAMP服务器环境搭建(手动编译安装)
CentOS6.4下基于Nginx搭建mp4/flv流媒体服务器
CentOS6下基于Nginx搭建mp4/flv流媒体服务器(可随意拖动)并支持RTMP/HLS协议(含转码工具)
Debian/Ubuntu/CentOS VPS安装Net-Speeder并优化
redhat openshift 跳转
在Heroku上,安装Wordpress
AppFog免费云空间申请及安装wordpress(图文教程)
销售高手们都是如何逼单的?
ubuntu命令
cloudfoundry上搭建go服务端
Copyright © 2011-2022 走看看