欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android开发中TextView各种常见使用方法小结

程序员文章站 2023-10-30 14:35:04
本文实例讲述了android开发中textview各种常见使用方法。分享给大家供大家参考,具体如下: 效果图: xml布局文件:

本文实例讲述了android开发中textview各种常见使用方法。分享给大家供大家参考,具体如下:

效果图:

Android开发中TextView各种常见使用方法小结

xml布局文件:

<?xml version="1.0" encoding="utf-8"?>
<linearlayout
  android:id="@+id/root"
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical">
  <!--设置字号20sp,文本框结尾处绘制图片-->
  <textview
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="我爱java"
    android:textsize="20pt"
    android:drawableright="@drawable/ic_dashboard_black_24dp" />
  <!--设置中间省略,所有字母大写-->
  <!--android:ellipsize="middle" ···省略号居中显示-->
  <!--android:textallcaps="true"全体大写-->
  <textview
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:singleline="true"
    android:text="我爱java我爱java我爱java我爱java我爱java我爱java我爱java我爱java"
    android:ellipsize="middle"
    android:textallcaps="true"/>
  <!--对邮件电话、添加链接-->
  <textview
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:singleline="true"
    android:text="邮箱是 814484626@qq.com, 电话是 13100000000"
    android:autolink="email|phone"/>
  <!--设置颜色、大小、并使用阴影-->
  <textview
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="测试文字"
    android:textsize="25pt"
    android:shadowcolor="#00f"
    android:shadowdx="10.0"
    android:shadowdy="8.0"
    android:shadowradius="3.0"
    android:textcolor="#f00"/>
  <!--测试密码框-->
  <textview
    android:id="@+id/password"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="@string/app_name"
    android:textsize="25sp"
    android:password="true"/>
  <!--测试密码框-->
  <checkedtextview
    android:id="@+id/check_text_view"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="可勾选的文本"
    android:textsize="25sp"
    android:checkmark="@xml/check"/>
  <!--通过android:background指定背景-->
  <textview
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="带边框的文本"
    android:textsize="25sp"
    android:background="@drawable/bg_border"/>
  <!--通过android:drawableleft绘制一张图片-->
  <textview
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="圆角边框,渐变背景的文本"
    android:textsize="25sp"
    android:background="@drawable/bg_border2"/>
</linearlayout>

bg_bordor

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
  <!--设置背景色为透明色-->
  <solid android:color="#0000"/>
  <!--设置红色边框-->
  <stroke android:width="4px" android:color="#f00"/>
</shape>

bg_bordor2

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
  android:shape="rectangle">
  <!--制定圆角矩形的四个圆角半径-->
  <corners android:topleftradius="30px"
    android:toprightradius="5px"
    android:bottomrightradius="30px"
    android:bottomleftradius="5px"/>
  <!--指定边框线条的宽度和颜色-->
  <stroke android:width="4px" android:color="#f0f"/>
  <!--指定使用渐变背景色,使用sweep类型渐变
  颜色从 红色->绿色->蓝色-->
  <gradient android:startcolor="#f00"
    android:centercolor="#0f0"
    android:endcolor="#00f"
    android:type="sweep"/>
</shape>

勾选效果通过xml selector实现切换

android:checkmark="@xml/check"/>

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:drawable="@drawable/ok" android:state_selected="true"/>
  <item android:drawable="@drawable/no" android:state_selected="false"/>
</selector>

java代码添加点击事件

public class home extends appcompatactivity {
  private int i = 0 ;
  public void oncreate(bundle savedinstancestate) {
    super.oncreate(savedinstancestate);
    setcontentview(r.layout.activity_main);//显示manlayout
    final checkedtextview checkedtextview = (checkedtextview) findviewbyid(r.id.check_text_view);
    checkedtextview.setonclicklistener(new view.onclicklistener() {
      @override
      public void onclick(view v) {
        if( i++ % 2 == 1 ){
          checkedtextview.setselected(true);
        }
        else {
          checkedtextview.setselected(false);
        }
      }
    });
  }
}

更多关于android相关内容感兴趣的读者可查看本站专题:《android开发入门与进阶教程》、《android调试技巧与常见问题解决方法汇总》、《android基本组件用法总结》、《android视图view技巧总结》、《android布局layout技巧总结》及《android控件用法总结

希望本文所述对大家android程序设计有所帮助。