既存の View を拡張して新たに自分だけの View を作成したいときは まず、res/values に attrs.xml を作成します attrs.xml <?xml version="1.0" encoding="utf-8"?> <resources> <!-- name : custom view class name --> <declare-styleable name="CustomView"> <attr name="text" format="string" /> <attr name="color" format="color" /> <attr name="size" format="dimension" /> </declare-styleable> </resources> declare-styleable の name属性は作成するカスタムビューのクラス名