诗词
字典
板报
句子
名言
励志
学校
友答
搜索
首页
中考频道
作文频道
公务员频道
出国留学
医药考试
司法考试
图书频道
外语考试
建筑工程
成人高考
故事频道
教程频道
文档频道
早教
星座频道
校园
求职招聘
考研频道
职业资格
自考频道
计算机考试
财会考试
高考频道
当前位置:
首页
>
教程频道
>
移动开发
>
Android
>
android SpannableString施用详解
2012-06-20
android SpannableString使用详解?xml version1.0 encodingutf-8?LinearLayout xmlns:androidh
android SpannableString使用详解
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#ff333333" android:orientation="vertical" > <EditText android:id="@+id/tv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleLine="false" android:inputType="none"/> <GridLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:columnCount="4" > <Button android:id="@+id/image_btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/image" /> <Button android:id="@+id/url_btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/url" /> <Button android:id="@+id/color_btn1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/color1" /> <Button android:id="@+id/color_btn2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/color2" /> <Button android:id="@+id/font_btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/font" /> <Button android:id="@+id/style_btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/style" /> <Button android:id="@+id/strike_btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/strike" /> <Button android:id="@+id/underline_btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/underline" /> </GridLayout></LinearLayout>