一、 不隐藏

<TextView

android:id="@+id/tv_offlinebbs"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:autoLink="web"

android:text="Google Address http://www.google.com" />

二、隐藏连接

1.在String.xml 中添加

<string name="link"><a href="http://www.google.com" >Google Address</a></string>

2.TextView中要将autoLink去掉,将android:text引用String.xml中的 link

<TextView

android:id="@+id/tv_offlinebbs"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="@string/link" />

3.在 Activity 中添加

TextView t2 = (TextView) findViewById(R.id.link);

t2.setMovementMethod(LinkMovementMethod.getInstance());

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. Android源码解析Handler系列第(三)篇---深
  2. Egret打包Android
  3. Android Service的生命周期及使用!
  4. Android Handle,Looper,Message消息机制
  5. Android 自定义View及其在布局文件中的使
  6. Android Native 绘图方法
  7. Dojo Mobile:iPhone/Android的Web应用开发
  8. Android adb shell命令详解及实例
  9. android 搜索框(二)
  10. PC端连接Android设备进行adb调试