«android-cardview» 태그된 질문

23
ScrollView 내부의 RecyclerView가 작동하지 않습니다
동일한 레이아웃에서 RecyclerView와 ScrollView가 포함 된 레이아웃을 구현하려고합니다. 레이아웃 템플릿 : <RelativeLayout> <ScrollView android:id="@+id/myScrollView"> <unrelated data>...</unrealated data> <android.support.v7.widget.RecyclerView android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/my_recycler_view" /> </ScrollView> </RelativeLayout> 문제 : 마지막 요소까지 스크롤 할 수 있습니다. ScrollView 내가 시도한 것 : ScrollView(현재 ScrollView포함 RecyclerView) 내부의 카드보기 -RecyclerView 초기 생각은 보기 유형 중 하나 가 …

14
Android Lollipop CardView의 파급 효과
여기 에 Android 개발자 페이지에 설명 된대로 활동 XML 파일에서 android : backgound 속성을 설정하여 만지면 파급 효과를 표시하도록 CardView를 얻으려고 하지만 작동하지 않습니다. 애니메이션은 전혀 없지만 onClick의 메소드가 호출됩니다. here 제안 된대로 ripple.xml 파일을 만들려고 했지만 동일한 결과를 보았습니다 . 활동의 XML 파일에 표시되는 CardView : <android.support.v7.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto" android:layout_width="155dp" …

6
CardView 배경색은 항상 흰색
GridLayoutManager와 함께 RecyclerView를 사용하고 있으며 각 항목을 CardView로 가지고 있습니다. 불행히도 여기서 CardView는 배경색을 변경하지 않는 것 같습니다. 나는 레이아웃과 프로그래밍 방식으로 시도했지만 아무것도 시도하지 않은 것 같습니다. 나는 꽤 오랫동안 고투 해왔다. 누군가이 문제를 해결할 수 있다면 고맙습니다.

18
프로그래밍 방식으로 CardView의 배경색 변경
CardView는 속성이 card_view:cardBackgroundColor배경 색상을 정의 할 수 있습니다. 이 속성은 잘 작동합니다. 동시에 색상을 동적으로 변경하는 방법은 없습니다. 방금 다음과 같은 솔루션을 시도했습니다. mCardView.setBackgroundColor(...); 또는 cardView 내부의 레이아웃 사용 <android.support.v7.widget.CardView> <LinearLayout android:id="@+id/inside_layout"> </android.support.v7.widget.CardView> View insideLayout = mCardView.findViewById(R.id.inside_layout); cardLayout.setBackgroundColor(XXXX); 카드에 cardCornerRadius가 있으므로 이러한 솔루션이 작동하지 않습니다.

10
CardView layout_width =“match_parent”가 상위 RecyclerView 너비와 일치하지 않습니다.
나는 layout_width = "match_parent"와 함께 RecyclerView를 포함하는 조각이 있습니다. <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="match_parent" android:layout_gravity="center" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity$PlaceholderFragment" /> RecyclerView의 항목은 layout_width = "match_parent"도있는 CardView입니다. <android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:card_view="http://schemas.android.com/apk/res-auto" android:id="@+id/card_view" android:layout_gravity="center" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_margin="20dp" card_view:cardCornerRadius="4dp"> <TextView android:layout_gravity="center" android:id="@+id/info_text" android:layout_width="match_parent" android:gravity="center" android:layout_height="match_parent" android:textAppearance="?android:textAppearanceLarge"/> </android.support.v7.widget.CardView> 다음과 같이 항목보기를 부풀립니다. public MyAdapter.ViewHolder …

17
CardView가 Android L에서 Shadow를 표시하지 않음
Listview 내의 내 Cardview가 Android L (Nexus 5)에서 그림자를 표시하지 않습니다. 또한 둥근 모서리가 제대로 표시되지 않습니다. 다음은 Listview의 Adapter View 코드입니다. <?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:card_view="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res/com.example.myapp" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" > <android.support.v7.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto" android:id="@+id/card_view" android:layout_width="match_parent" android:layout_height="wrap_content" app:cardBackgroundColor="@android:color/white" android:foreground="?android:attr/selectableItemBackground" app:cardCornerRadius="4dp" app:cardElevation="4dp" > <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingTop="@dimen/activity_vertical_margin" > <TextView …

5
Android 5.0의 AppCompat CardView에서 XML의 고도 설정
내가 이해하는 바에 따르면, 미리보기 단계의 초기에는 CardViewJava 해킹없이 s 에서만 XML로 고도를 설정할 수있는 방법이없는 것 같습니다 . 이제 공식 릴리스가 나왔으니 Java 코드를 작성하지 않고 XML로이를 수행 할 수있는 방법이 있습니까? 나는 card_view:cardElevation효과가 없도록 노력 했다. 5.0 에뮬레이터를 사용할 때 모든 것이 괜찮다고 생각했습니다. 하지만 이제 실제 기기에서 …

13
CardView 코너 반경
CardView가 상단에 모서리 반경 만 갖도록하는 방법이 있습니까? <android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="wrap_content" app:cardCornerRadius="10dp" >

5
CardView의 투명한 배경-Android
CardView에서 투명한 배경을 만들고 싶습니다. backgroundColor를 알고 있지만 레이아웃에 이미지가 있습니다. 어떻게하는지 아십니까? 아니면 cardview로 작동하지만 투명한 배경을 설정할 것입니까? 문안 인사

4
Lollipop에서 CardView 사이에 공간이없는 이유는 무엇입니까?
를 사용하려고하는데 CardView5.0 이하에서 잘 작동하지만 Lollipop에서는 이상하게 보입니다. <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin"> <android.support.v7.widget.CardView android:layout_width="match_parent" android:layout_height="200dp"> <TextView android:id="@+id/textView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="card1" android:textAppearance="?android:attr/textAppearanceLarge" /> </android.support.v7.widget.CardView> <android.support.v7.widget.CardView android:layout_width="match_parent" android:layout_height="200dp"> <TextView android:id="@+id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="card2" android:textAppearance="?android:attr/textAppearanceLarge" /> </android.support.v7.widget.CardView> </LinearLayout> 을 사용할 때 동일한 질문이 나타납니다 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.