以下是我自定義的類
<view
class="com.productions.sample.TextCustom"
// more...
/>
子類
public class TextCustom extends TextView {
// Stuff.
}
我想實現的是
public final class Custom {
public class TextCustom extends TextView {
// Stuff.
}
public class ScrollCustom extends ScrollView {
// Stuff.
}
}
請問在XML文件中能同時定義子類嗎?
使用$符號作為一個定界符
<view class="com.productions.sample.Custom$TextCustom" />