답변:
@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 코드에 간단히 입력하면됩니다!
Android Studio 1.3.1부터는 미리보기에 기본 목록 항목이 표시되지만 아직 직접 지정하지는 않습니다. 잘만되면 그것은 올 것이다.