我是靠谱客的博主 朴素白羊,最近开发中收集的这篇文章主要介绍Android实现超链接和跑马灯,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

首先我们来看是实现超链接的过程:

我先将代码展示一下:

<TextView
        android:layout_width="match_parent" //匹配父元素
        android:layout_height="wrap_content"
        android:autoLink="all"  //允许所有的超链接
        android:background="#eeeeee"
        android:linksClickable="true"
        android:paddingBottom="8dp"
        android:paddingTop="8dp"
        android:text="自动链接及换行电话:10086邮件baidu.com"
        android:textColorLink="@android:color/holo_blue_dark"/>

其中autoLink有多种值: web,phone, map, email,all,none

分别是url连接、电话号码提取拨号、地图地址、电子邮件、能支持的超级连接全部起作用和没有超链接。

跑马灯的实现过程:

<TextView  
        android:id="@+id/main_more_text"  
        android:layout_width="wrap_content"  
        android:layout_height="wrap_content"  
        android:layout_gravity="center_horizontal"  
        android:text=" Android TextView跑马灯效果代码                                   "  
        android:textAppearance="?android:attr/textAppearanceMedium"  
        android:textColor="#FF00FF"  
  
        android:ellipsize="marquee"   
        android:singleLine="true"  
        android:marqueeRepeatLimit="marquee_forever"   
        android:focusable="true"   
        android:focusableInTouchMode="true"   
        android:scrollHorizontally="true"  




最后

以上就是朴素白羊为你收集整理的Android实现超链接和跑马灯的全部内容,希望文章能够帮你解决Android实现超链接和跑马灯所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部