カスタム ビュー クラスの xml レイアウト ファイルから属性を取得しようとしていますが、これを行うには 2 つの方法があるようです....
この最初のものは、型付き配列を使用してすべての属性にアクセスしています
public VisualNode(Context context, AttributeSet attrs) {
super(context, attrs);
// TODO Auto-generated constructor stub
//getting all the attributes that might be set in an xml file
TypedArray a = context.getTheme().obtainStyledAttributes(attrs,
R.styleable.VisualNode, 0, 0);
String text = a.getString(R.styleable.VisualNode_device_name);
deviceName = new TextView(context);
deviceName.setText(text);
これとは対照的に、リソースに直接アクセスする
deviceName = new TextView(context);
deviceName.setText(R.styleable.VisualNode_device_name);