浅入浅出Android(003):使用TextView类构造文本控件

原创
2014/03/22 15:41
阅读数 4.7K

基础:

TextView是无法供编辑的。
当我们新建一个项目MyTextView时候,默认的布局(/res/layout/activity_main.xml)中已经有了一个TextView:
<TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />



运行效果如下:


修改其文本内容:


在布局文件activity_main.xml中可以看到:
android:text="@string/hello_world"



hello_world实际上是一个字符串资源,看成变量名就行了。在/res/values/strings.xml下可以找到:
<string name="hello_world">Hello world!</string>



根据需要,修改标签中的内容即可。

为文本内容增加html形式的样式:


可以在字符串资源中添加一定的样式,例如<i>,<b>,<u>。例如让Hello成为斜体:
<string name="hello_world"><i>Hello</i> world!</string>
运行结果如下:



使用Html.fromHtml为TextView中的文本提供样式:


为布局文件activity_main.xml中的TextView添加id:

<TextView
        android:id="@+id/myTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />



将/src/com.example.mytextview/MainActivity.java内容更改如下:
package com.example.mytextview;

import android.os.Bundle;
import android.app.Activity;
import android.text.Html;
import android.text.Spanned;
import android.view.Menu;
import android.widget.TextView;

public class MainActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		TextView myTextView= (TextView) findViewById(R.id.myTextView);
		Spanned sp = Html.fromHtml("<h3><u>Hello world!</u></h3>");
		myTextView.setText(sp);
	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.main, menu);
		return true;
	}

}



效果如下:


使用TextView自带的方法更改其文本内容的样式:


例如MainActivity.java:
package com.example.mytextview;

import android.os.Bundle;
import android.app.Activity;
import android.graphics.Color; //
import android.graphics.Paint; //
import android.view.Menu;
import android.widget.TextView;

public class MainActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		TextView myTextView= (TextView) findViewById(R.id.myTextView);
		myTextView.getPaint().setFlags(Paint.UNDERLINE_TEXT_FLAG);
		myTextView.setTextSize(20);
		myTextView.setTextColor(Color.BLUE);
	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.main, menu);
		return true;
	}

}



效果如下:



如果要在文本中现实<,>等特殊字符,请使用实体引用,例如&lt;等等。
展开阅读全文
加载中
点击加入讨论🔥(1) 发布并加入讨论🔥
打赏
1 评论
20 收藏
0
分享
返回顶部
顶部