摘要:Android - attrs
上次已有自訂屬性,
不過這次因為在看別人的source code 發現可以不用像我上次那樣的設定
首先自訂屬性,
會在attrs.xml加入
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="IconTitleLayout">
<attr name="title" format="string"/>
<attr name="icon" format="integer" />
</declare-styleable>
</resources>
這次與上次不同的會是,
在activity_main.xml頁面,root tag的設定可改為下面
xmlns:app="http://schemas.android.com/apk/res/com.tomlai.demo.app"
在使用時就可以用
app:title="Hello"
做設定。
com.tomlai.demo.app 就是我這demo app 的 package name