我以编程方式创建了一个textView。现在我需要以编程方式为此textview指定样式。 (不仅是TextAppearance,还有左边距,填充等)。所有这些样式属性都在xml文件中定义。
TextView tv = new TextView(this);
答案 0 :(得分:0)
设置填充非常简单。但保证金有点不稳定。请查看以下内容。
TextView tv = new TextView(this);
//setting padding left top right bottom
tv.setPadding(10, 10, 10, 10);
//setting left margin
LinearLayout.LayoutParams llp = new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
llp.setMargins(50, 0, 0, 0); // llp.setMargins(left, top, right, bottom);
tv.setLayoutParams(llp);
答案 1 :(得分:0)
LinearLayout.LayoutParams llp = new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
tv.setLayoutParams(params);
tv.setPadding(left, top, right, bottom);
left- padding to left
top - padding to right
right -padding to right
bottom -padding to bottom
有关更多样式,请查看以下链接。请参阅setter方法。您可以设置文字大小,背景颜色等等。
http://developer.android.com/reference/android/widget/TextView.html
答案 2 :(得分:0)
使用layout params设置此属性。
TextView t = new TextView(this);
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(heightInPixels, widthInPixel);
params.setMargins(left, top, right, bot);
t.setLayoutParams(params);
mLinearLayout.addView(t);
修改强>
如果您在attrs.xml文件中定义了自己的样式,那么您必须创建自己的Textview和构造函数句柄属性。它用于处理XML中的属性。对于java定义,你必须制作“set method”。
public class MyTextView extends TextView
{
String _stringValue;
public MyTextView(Context c)
{
this(c, null);
}
public MyTextView(Context c, AttributeSet attrs)
{
this(c, attrs, 0);
}
public MyTextView(Context c, AttributeSet attrs, int defStyle)
{
super(c, attrs, defStyle);
TypedArray a = c.obtainStyledAttributes(attrs, R.styleable.MyStyleAble);
_stringValue = a.getString(R.styleable.MyStyleAble_stringValue);
a.recycle(); //don't forget this line!
}
public void setStringValue(String s)
{
_stringValue = s;
}
}
修改强>
这里在代码中使用MyTextView。只需使用标准构造函数创建它。
MyTextView t = new MyTextView(context);
然后设置您的样式值。在我的例子中,它是字符串值。
t.setStringValue("My string text");
然后使用layoutParams。
t.setLayoutParams(params);
并将新创建的TextView添加到某些布局中。例如LinearLayout。
mLinearLayout.addView(t);
我忘了说只有在需要在XML文件中设置属性时才必须定义样式化的int attrs.xml。 然后就像这样使用它。
<my.package.name.MyTextView
xmlns:custom="http://schemas.android.com/apk/res/my.package.name"
custom:stringValue="some string text"
//and also you can use standart android:... attributes
/>
答案 3 :(得分:0)
使用layoutParams为动态创建的textView设置边距。
TextView view1 = new TextView(this);
view1.setGravity(Gravity.RIGHT | Gravity.CENTER);
RelativeLayout.LayoutParams rlp = new RelativeLayout.LayoutParams(
RelativeLayout.LayoutParams.WRAP_CONTENT,
RelativeLayout.LayoutParams.WRAP_CONTENT);
rlp.setMargins(10,10, 0, 0);
view1.setLayoutParams(rlp);
答案 4 :(得分:0)
表示字体样式:textview.setTypeface(Typeface.DEFAULT_BOLD);
对于左边距和填充,您需要定义“布局参数” 喜欢
TextView tv = new TextView(this);
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(heightInPixels, widthInPixel);
tv.setLayoutParams(params);
tv.setMargins(10, 10, 10, 10);
yourLayout.addView(tv);
tv.setPadding(10, 10, 10, 10);