Preguntas etiquetadas con android-cardview

23
RecyclerView dentro de ScrollView no funciona
Estoy tratando de implementar un diseño que contenga RecyclerView y ScrollView en el mismo diseño. Plantilla de diseño: <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> Problemas: puedo desplazarme hasta el último elemento de ScrollView Cosas que probé: vista de tarjeta dentro de ScrollView(ahora ScrollViewcontiene …


6
Color de fondo de CardView siempre blanco
Estoy usando RecyclerView con GridLayoutManager y tengo cada elemento como CardView. Desafortunadamente, el CardView aquí no parece cambiar su color de fondo. Intenté en el diseño y también mediante programación, pero he intentado que nada parece funcionar. He estado luchando por bastante tiempo. Agradezco que alguien pueda ayudarme con este …

18
Cambiar el color de fondo de CardView mediante programación
El CardView tiene un atributo card_view:cardBackgroundColorpara definir el color de fondo. Este atributo funciona bien. Al mismo tiempo, no hay un método para cambiar el color dinámicamente. Acabo de probar soluciones como: mCardView.setBackgroundColor(...); o usando un diseño dentro de la tarjeta <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); …

10
CardView layout_width = "match_parent" no coincide con el ancho del RecyclerView padre
Tengo un fragmento con contiene un RecyclerView con layout_width = "match_parent": <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" /> El elemento en RecyclerView es un CardView también con layout_width = "match_parent": <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" …

17
CardView no muestra Shadow en Android L
Mi Cardview dentro de Listview no muestra sombras en Android L (Nexus 5). Además, los bordes redondos no se muestran correctamente. Aquí está el código para la vista del adaptador de Listview: <?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" …


13
Radio de esquina de CardView
¿Hay alguna manera de hacer que CardView solo tenga un radio de esquina en la parte superior? <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" >


4
¿Por qué no hay espacio entre CardViews en Lollipop?
Intento usar el CardViewy funciona bien por debajo de 5.0, pero se ve extraño en 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> …

5
MaterialCardView se bloquea con el material: 1.1.0
Estoy usando MaterialCardView como mi cardviewdiseño. Ahora, Android-studio comenzó a mostrarme que en lugar de actual implementation "com.google.android.material:material:1.0.0", debería actualizar a1.1.0 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/edit_name" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:orientation="vertical" android:layout_margin="@dimen/activity_vertical_margin"> <com.google.android.material.card.MaterialCardView android:layout_width="match_parent" android:layout_height="wrap_content" app:cardCornerRadius="8dp" app:cardElevation="8dp"> <...more layout> </com.google.android.material.card.MaterialCardView> </LinearLayout> con 1.1.0, me estoy bloqueando Error inflating class com.google.android.material.card.MaterialCardView Entonces, tengo …
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.