码迷,mamicode.com
首页 > 其他好文 > 详细

TextView之代码中设置图片的操作

时间:2015-01-27 12:43:06      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
/**
	 * 实例化首页订单通知条
	 */
	private TextView getTextView() {
		// 实例化一个线性布局的参数
		LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(
				LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);
		lp.setMargins(0, 12, 0, 0);
		textView = new TextView(HomeActivity.this);
		textView.setLayoutParams(lp);
		textView.setGravity(Gravity.CENTER_VERTICAL);
		textView.setPadding(30, 0, 30, 0);
		textView.setTextSize(16);
		textView.setTextColor(Color.WHITE);
		textView.setText("通知条");
		textView.setMinHeight(120);
		textView.setBackgroundColor(R.color.Notifi);	//#99969696
		LinNotifi.addView(textView, lp);
		Drawable drawable = getResources().getDrawable(R.drawable.laba);
		drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight()); // 设置边界
		textView.setCompoundDrawablePadding(20);// 设置喇叭与textview的距离
		textView.setCompoundDrawables(drawable, null, null, null);
		return textView;
	}
 <color name="Notifi">#99969696</color>

 

TextView之代码中设置图片的操作

标签:

原文地址:http://www.cnblogs.com/fenglh04/p/4252398.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!