美文网首页
Android Tools Attributes使用

Android Tools Attributes使用

作者: 码农朱同学 | 来源:发表于2018-06-21 15:19 被阅读0次

    地址:https://developer.android.google.cn/studio/write/tool-attributes

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:itemCount="3"/>
    
    <ListView xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@android:id/list"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:listitem="@layout/sample_list_item"
        tools:listheader="@layout/sample_list_header"
        tools:listfooter="@layout/sample_list_footer" />
    

    For example, if the android:text attribute value is set at runtime or you want to see the layout with a value different than the default, you can add tools:text to specify some text for the layout preview only.

    相关文章

      网友评论

          本文标题:Android Tools Attributes使用

          本文链接:https://www.haomeiwen.com/subject/kbaqyftx.html