NumberFormatException when using styleable attrs
问题 I created a custom view for Android which renders two inner views to store a key and a value in two columns. The class looks like this: public class KeyValueRow extends RelativeLayout { protected TextView mLabelTextView; protected TextView mValueTextView; public KeyValueRow(final Context context) { super(context); init(context, null, 0); } public KeyValueRow(final Context context, final AttributeSet attrs) { super(context, attrs); init(context, attrs, 0); } public KeyValueRow(final Context