TextView使用实例
第一次发文章好紧张哦,一定要我。 一、引用 1、TextView实战之你真的懂我么? 2、Android TextView 添加下划线的几种方式 3、Android在一个TextView里显示不同样式的字体 4、盘点Android使用自定义字体遇到的坑 5、Android应用使用第三方字体 二、实例 1、完全靠xml布局实现的各式文字样式(超链接,下划线,滚动,阴影,拉伸,粗体斜体,图片加载) 图例: tv-1.png xml: <!--part 1--> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@color/white" android:orientation="vertical"> <TextView style="@style/text_part_title_style" android:layout_margin="3dp" android:text="@string/text...
