Android Layout - when to use app: vs android:?

后端 未结 5 1353
囚心锁ツ
囚心锁ツ 2020-12-25 14:30

I\'ve been writing some Android apps but I don\'t really understand when to use app: and when to use android:. When styles are not being applied th

5条回答
  •  感情败类
    2020-12-25 15:27

    You are talking about custom namespace.In android we can create custom views in additional to already available views. As per in Google developer docs.. To add a built-in View to your user interface, you specify it in an XML element and control its appearance and behavior with element attributes. Well-written custom views can also be added and styled via XML. To enable this behavior in your custom view, you must:

    Define custom attributes for your view in a resource element Specify values for the attributes in your XML layout Retrieve attribute values at runtime Apply the retrieved attribute values to your view

    Once you define the custom attributes, you can use them in layout XML files just like built-in attributes. The only difference is that your custom attributes belong to a different namespace. Instead of belonging to the http://schemas.android.com/apk/res/android namespace, they belong to http://schemas.android.com/apk/res/[your package name]

    So for if you use default views you can use android namespace and if you want to set and use attributes for custom view you can define your own name.

    Refer this

提交回复
热议问题