博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android TextView 初步学习
阅读量:6403 次
发布时间:2019-06-23

本文共 2073 字,大约阅读时间需要 6 分钟。

直接设置XML Layout:

<TextView

android:id="@+id/text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="20sp"
android:layout_marginRight="20sp"
android:textStyle="bold"
android:background="@drawable/xq"
android:textSize="20sp" />

使用xml文件设置属性

styles.xml:

<resources>

<!--

Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="android:Theme.Light">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
</style>

<!-- Application theme. -->

<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>
<style name="TextView">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_marginLeft">20sp</item>
<item name="android:textStyle">bold</item>
<item name="android:layout_marginRight">20sp</item>
<item name="android:background">@drawable/xq</item>
<item name="android:textColor">#005</item>
<item name="android:shadowColor">@android:color/black</item>
<item name="android:shadowRadius">0.5</item>
<item name="android:textSize">20sp</item>
</style>

</resources>

layout.xml

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

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">

<TextView

android:id="@+id/text_view"
style="@style/TextView"/>

</LinearLayout>

 

设置文本方法:

TextView myText = (TextView) findViewById(R.id.text_view);

        myText.setText("ccc");

 

设置背景图片方法:

TextView myText = (TextView) findViewById(R.id.text_view);

Resources resources=getBaseContext().getResources();
Drawable drawable=resources.getDrawable(R.drawable.xq1);
myText.setBackgroundDrawable(drawable);

 

 

转载地址:http://uinea.baihongyu.com/

你可能感兴趣的文章
基本数据结构:链表(list)
查看>>
python获取主机ip的正确方式
查看>>
多线程的设计模式
查看>>
Java8 List 分组 Java 8 Stream 流式计算
查看>>
MyBatis6:MyBatis集成Spring事物管理(下篇)
查看>>
存储论---存储论的基本概念
查看>>
使用certbot自动签发SSL证书(Let's Encrypt证书)
查看>>
C# 枚举、字符串、值的相互转换
查看>>
Struts秘籍之第1段:第2.1式:用插件来进行应用初始化
查看>>
GMF树形布局 3 展开/折叠时更换Node图标
查看>>
PHP截取字符串,获取长度,获取字符位置的函数 中文字符截取
查看>>
边缘计算与数据中心的发展趋势
查看>>
ALAsset,ALAssetsLibrary,ALAssetsgroup常见属性及用法
查看>>
SVN各种错误提示产生原因及处理方法大全
查看>>
Linux下基于端口的服务检查脚本
查看>>
setInterval
查看>>
Electronic Mail (邮件服务架构)
查看>>
常用文件重定向命令
查看>>
Betweenness Centrality的快速计算
查看>>
Spring Cloud搭建时碰到的问题及解决办法
查看>>