เมื่อฉันเพิ่ม RecyclerView ลงในเลย์เอาต์มันจะปรากฏเป็นหน้าจอว่างเปล่า มีวิธีเช่นผ่านtools
namespace เพื่อแสดงตัวอย่างของเนื้อหาของ RecyclerView หรือไม่
เมื่อฉันเพิ่ม RecyclerView ลงในเลย์เอาต์มันจะปรากฏเป็นหน้าจอว่างเปล่า มีวิธีเช่นผ่านtools
namespace เพื่อแสดงตัวอย่างของเนื้อหาของ RecyclerView หรือไม่
คำตอบ:
@oRRs ถูกต้อง!
ฉันใช้ Android Studio 1.4 RC2 และตอนนี้คุณสามารถระบุเค้าโครงที่กำหนดเองได้แล้ว
ฉันลองใช้ CardView แบบกำหนดเองและใช้งานได้
tools:listitem="@android:layout/simple_list_item_checked"
tools:orientation="horizontal"
tools:orientation="horizontal"
หรือandroid:orientation="horizontal"
ฉันยังมีการระบุapp:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
เป็นต่อstackoverflow.com/questions/35681433/...
tools
เนมสเปซเปิดใช้งานฟีเจอร์ขณะออกแบบ (เช่นเลย์เอาต์ที่จะแสดงในส่วน) หรือพฤติกรรมการคอมไพล์เวลา (เช่นโหมดการย่อขนาดเพื่อใช้กับทรัพยากร XML ของคุณ) มันเป็นคุณสมบัติที่ทรงพลังจริงๆที่พัฒนาและช่วยให้คุณไม่ เวลาที่จะเห็นการเปลี่ยนแปลง
AndroidX [เกี่ยวกับ]และ GridLayoutManager
implementation 'androidx.recyclerview:recyclerview:1.1.0'
<androidx.recyclerview.widget.RecyclerView
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"
tools:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
tools:listitem="@layout/item"
tools:itemCount="10"
tools:orientation="vertical"
tools:scrollbars="vertical"
tools:spanCount="3"/>
การสนับสนุนและ LinearLayoutManager
implementation 'com.android.support:recyclerview-v7:28.0.0'
<android.support.v7.widget.RecyclerView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:layoutManager="android.support.v7.widget.LinearLayoutManager"
tools:listitem="@layout/item"
tools:itemCount="3"
tools:orientation="horizontal"
tools:scrollbars="horizontal" />
อีกคุณสมบัติที่ยอดเยี่ยมที่ได้รับการแนะนำAndroid studio 3.0
คือการกำหนดข้อมูลล่วงหน้าผ่านคุณสมบัติของเครื่องมือเพื่อแสดงโครงสร้างของเลย์เอาต์ของคุณได้อย่างง่ายดายโดยใช้@tools:sample/*
ทรัพยากร
item.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="100dp"
android:layout_height="150dp"
android:layout_marginRight="15dp"
android:layout_marginBottom="10dp"
android:orientation="vertical"
tools:background="@tools:sample/backgrounds/scenic">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/colorWhite"
tools:text="@tools:sample/first_names" />
</FrameLayout>
ผล:
listitem
ตัวเลือกฉันเพียงแค่พิมพ์ลงในรหัส xml!
ก่อนอื่นเพิ่มบรรทัดต่อไปนี้ในรายการ XML ของคุณเพื่อแสดงตัวอย่างรายการของคุณในขณะที่คุณแก้ไขรายการ:
tools:showIn="@layout/activity_my_recyclerview_item"
และเพิ่มบรรทัดต่อไปนี้ใน RecyclerView XML ของคุณเพื่อดูตัวอย่างว่ารายการของคุณจะมีลักษณะอย่างไรในรายการของคุณ:
tools:listitem="@layout/adapter_item"
สำหรับ Android Studio 1.3.1 จะแสดงรายการเริ่มต้นในหน้าตัวอย่าง แต่ยังไม่อนุญาตให้คุณระบุได้เอง หวังว่ามันจะมา