我有一个包含两个TextView的自定义组件,它们具有自定义大小设置方法(两个文本视图的比例约为1:2)。由于这是RelativeLayout的子类,因此它没有textSize属性,但我想知道是否仍然可以在此实例的XML实例化中设置android:textSize
属性,然后获取{ AttributeSet中的{1}}属性与构造函数中的自定义textSize
方法一起使用。
我已经看到了使用自定义属性执行此操作的技术,但是如果我想获取已经存在于android词典中的属性该怎么办?
答案 0 :(得分:70)
让我们假设您的RelativeLayout声明(在xml中)使用14sp定义了textSize:
android:textSize="14sp"
在自定义视图的构造函数(接收AttributeSet的构造函数)中,您可以从Android的命名空间中检索属性:
String xmlProvidedSize = attrs.getAttributeValue("http://schemas.android.com/apk/res/android", "textSize");
xmlProvidedSize的值将类似于“14.0sp”,并且可能只需要一点字符串编辑就可以提取数字。
声明自己的属性集的另一个选项有点冗长,但也有可能。
因此,您拥有自定义视图,并且您的TextView声明如下:
public class MyCustomView extends RelativeLayout{
private TextView myTextView1;
private TextView myTextView2;
// rest of your class here
...大
现在你还需要确保你的自定义视图覆盖了接收AttributeSet的构造函数,如下所示:
public MyCustomView(Context context, AttributeSet attrs){
super(context, attrs);
init(attrs, context); //nice, clean method to instantiate your TextViews//
}
好的,现在让我们看看init()方法:
private void init(AttributeSet attrs, Context context){
// do your other View related stuff here //
TypedArray a = getContext().obtainStyledAttributes(attrs, R.styleable.MyCustomView);
int xmlProvidedText1Size = a.int(R.styleable.MyCustomView_text1Size);
int xmlProvidedText2Size = a.int(R.styleable.MyCustomView_text2Size);
myTextView1.setTextSize(xmlProvidedText1Size);
myTextView2.setTextSize(xmlProvidedText2Size);
// and other stuff here //
}
你可能想知道R.styleable.MyCustomView,R.styleable.MyCustomView_text1Size和R.styleable.MyCustomView_text2Size来自哪里;请允许我详细说明这些。
您必须在attrs.xml文件中(在values目录下)声明属性名称,以便在使用自定义视图时,从这些属性收集的值将在构造函数中传递。 / p>
那么让我们看看你如何声明这些自定义属性,就像你问的那样: 这是我的整个attrs.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="MyCustomView">
<attr name="text1Size" format="integer"/>
<attr name="text2Size" format="integer"/>
</declare-styleable>
</resources>
现在您可以在XML中设置TextViews的大小,但是如果没有在Layout中声明命名空间,请按以下步骤操作:
<com.my.app.package.MyCustomView
xmlns:josh="http://schemas.android.com/apk/res-auto"
android:id="@+id/my_custom_view_id"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
josh:text1Size="15"
josh:text2Size="30"
/>
请注意我如何将命名空间声明为“josh”作为CustomView属性集中的第一行。
我希望这有助于Josh,
答案 1 :(得分:1)
接受的答案有点长。这是一个浓缩版本,我希望很容易遵循。要将textSize
属性(或使用dp
/ sp
的任何内容)添加到自定义视图,请执行以下步骤。
创建(或添加以下部分)到 attrs.xml 。请注意dimension
格式。
<resources>
<declare-styleable name="CustomView">
<attr name="textSize" format="dimension" />
</declare-styleable>
</resources>
请注意自定义app
命名空间。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.example.myproject.CustomView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:textSize="20sp" />
</RelativeLayout>
请注意getDimensionPixelSize
的使用。在自定义视图中,只需使用像素。如果您需要转换为其他维度,请参阅this answer。
public class CustomView extends View {
private float mTextSize; // pixels
public CustomView(Context context, AttributeSet attrs) {
super(context, attrs);
TypedArray a = context.getTheme().obtainStyledAttributes(
attrs, R.styleable.CustomView, 0, 0);
try {
mTextSize = a.getDimensionPixelSize(R.styleable.CustomView_textSize, 0);
} finally {
a.recycle();
}
}
/**
* @param size in SP units
*/
public void setTextSize(int size) {
mTextSize = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP,
size, getResources().getDisplayMetrics());
mTextPaint.setTextSize(mTextSize);
invalidate();
requestLayout();
}
// ...
}