河南IT培訓學校:android textView 加入連接方式
鄭州北大青鳥電腦培訓學校業(yè)績北大青鳥鄭州翔天信鴿中心,最新開設(shè)了ACCP課程,現(xiàn)在開設(shè)的有JAVA和 .net軟件開發(fā)系統(tǒng)課程,都是大型軟件系統(tǒng)發(fā)開發(fā)平臺,現(xiàn)在也已經(jīng)開課。今后還會逐漸開班android方向的課程,今天我們鄭州IT培訓學校就給大家分享下android textView 加入連接方。
1:使用android:autoLink="all" 只需在textview中加入這個屬性 在里面寫的文字中包含網(wǎng)址、電話、email的會自動加入連接地址。
如:<TextView xmlns:android="http:// schemas.android.com/apk/res/android"
android:id="@+id/text1" android:layout_width="match_parent"
android:layout_height="match_parent" android:autoLink="all"
android:text="@string/link_text_auto" />
2:uses a string resource containing explicit <a> tags to specify
links.
如: <string name="link_text_manual"><b>text2:</b> This is some other
text, with a <a href="linkhttp://www.google.com">link</a> specified
via an <a> tag. Use a \"tel:\" URL
to <a href="tel:4155551212">dial a phone number</a>.
</string>
別忘了
TextView t2 = (TextView) findViewById(R.id.text2);
t2.setMovementMethod(LinkMovementMethod.getInstance());
3: builds the text in the Java code using HTML
TextView t3 = (TextView) findViewById(R.id.text3);
t3.setText(Html.fromHtml("<b>text3:</b> Text with a "
+ "<a href=\"linkhttp://www.google.com\">link</a> "
+ "created in the Java source code using HTML."));
t3.setMovementMethod(LinkMovementMethod.getInstance());
4:字符串截取方法
SpannableString ss = new SpannableString("text4: Click here to dial the phone.");
ss.setSpan(new StyleSpan(Typeface.BOLD), 0, 6, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
ss.setSpan(new URLSpan("tel:4155551212"), 13, 17, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
TextView t4 = (TextView) findViewById(R.id.text4);
t4.setText(ss);
t4.setMovementMethod(LinkMovementMethod.getInstance());
Android中我們?yōu)榱藢崿F(xiàn)文本的滾動可以在ScrollView中嵌入一個TextView,其實TextView自己也可以實現(xiàn)多行滾動的,畢竟ScrollView必須只能有一個直接的子類布局。只要在layout中簡單設(shè)置幾個屬性就可以輕松實現(xiàn)
<TextView
android:id="@+id/tvCWJ"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical" <!--垂直滾動條 -->
android:singleLine="false" <!--實現(xiàn)多行 -->
android:maxLines="15" <!--最多不超過15行 -->
android:textColor="#FF0000"
/>
當然我們?yōu)榱俗孴extView動起來,還需要用到TextView的setMovementMethod方法設(shè)置一個滾動實例,代碼如下
TextView tvAndroid123 = (TextView)findViewById(R.id.tvCWJ);
tvAndroid123.setMovementMethod(ScrollingMovementMethod.getInstance()); // Android開發(fā)網(wǎng)提示相關(guān)的可以查看SDK中android.text.method分支了解更多
ad_link = (TextView) findViewById(R.id.ad_link);
ad_link.setText(Html.fromHtml("<a href="\" mce_href="\"""+mURL.getLink()+"\">"+Html.fromHtml(mURL.getLabel()+"</a>")));
ad_link.setMovementMethod(LinkMovementMethod.getInstance());
以上就是ACCP課程android方向涉及的內(nèi)容,以后還將更多的推出ACCP課程方面的知識分享,讓大家更多的了解ACCP,了解北大青鳥,北大青鳥還有網(wǎng)絡(luò)工程師課程,想要了解更多請點擊:http:/// 查看。
本文由站河南北大青鳥校區(qū)整編而成,如需了解更多IT資訊類的文章、新聞、課程和學習技巧、就業(yè)案例、招生詳情等問題,可以對在線咨詢老師進行一對一問答!
推薦資訊
- 學習IT技術(shù),玩轉(zhuǎn)職場轉(zhuǎn)行跳槽... 2013-03-03
- 本科畢業(yè)后我們的出路在哪里呢... 2018-10-26
- 鄭州北大青鳥:微軟反盜xp黑屏補... 2012-10-13
- 鄭州北大青鳥翔天信鴿計算機學校... 2023-03-24
- 喜迎十一,北大青鳥告訴退伍軍人... 2012-10-13
熱點資訊
- 電腦溫度多少是正常的情況呢?... 2018-09-07
- 四個策略及簡單的防護方法... 2018-09-07
- 對硬盤進行雙分區(qū)有什么好處... 2018-09-07
- 文件加密的幾個簡單方法... 2018-09-07
- 計算機小技巧,80G硬盤巧變變成... 2018-09-07