注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
既存の View を拡張して新たに自分だけの View を作成したいときは まず、res/values に attrs.xml を作... 既存の 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属性は作成するカスタムビューのクラス名
2011/09/23 リンク