程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> xml-通過定義一個子類在XML類中自定義視圖

xml-通過定義一個子類在XML類中自定義視圖

編輯:編程綜合問答
通過定義一個子類在XML類中自定義視圖

以下是我自定義的類

<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" />
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved