首页 > 代码库 > TextView之代码中设置图片的操作
TextView之代码中设置图片的操作
/** * 实例化首页订单通知条 */ 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之代码中设置图片的操作
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。