Difference between android: and app: prefix in Android XML?

后端 未结 4 1862
情深已故
情深已故 2020-12-03 00:59

What is the difference and more importantly the necessity of having different prefixes in Andriod view XML?

For example,



        
4条回答
  •  Happy的楠姐
    2020-12-03 01:34

    app namespace is used for custom defined attributes, which are usually defined in /values/attrs.xml Here is a sample of such file

    
    
        
            
            
        
    
    

    And a sample usage would be

    
    

    Android namespace you use for Android's widgets and UI controls.

提交回复
热议问题