码迷,mamicode.com
首页 > 其他好文 > 详细

关于res-auto

时间:2015-09-18 18:32:03      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

 
在使用library自定义属性时,命名空间URI需要使用http://schemas.android.com/apk/res-auto,
在编译时,URI会自动替换为当前app的package名。
 
下面是使用support lib 的属性的例子
<android.support.v4.widget.DrawerLayout
    android:id="@+id/dl_main_drawer"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <!-- 你的内容布局-->
    <include layout="@layout/navigation_content"/>

    <android.support.design.widget.NavigationView
        android:id="@+id/nv_main_navigation"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        app:headerLayout="@layout/navigation_header"
        app:menu="@menu/drawer_view"/>

</android.support.v4.widget.DrawerLayout>

关于res-auto

标签:

原文地址:http://www.cnblogs.com/tonyhan/p/4819772.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!