布局工具属性是否有任何可能的原因在Android Studio 3.1.2中不起作用?它确实显示工具,但找不到列表项,文本等!
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:text="Test Text"
>
</android.support.v7.widget.RecyclerView>
</FrameLayout>
请参阅here了解错误。
答案 0 :(得分:0)
tools:text
元素中的属性RecyclerView
应该是固定的。
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:listitem="@android:layout/simple_list_item_checked"
tools:itemCount="3" />
</FrameLayout>