CardCornerRadius в cardview выглядит странно в Android пирог - PullRequest
0 голосов
/ 11 июня 2018

Мой CardView показывался как ожидалось до андроида O примерно так,

image

Но в андроиде P это выглядит такthis, (прозрачный белый прямоугольник внутри)

image

Этот стиль используется во всех приложениях CardView приложения.

 <style name="translucentCard" parent="CardView">
        <item name="cardCornerRadius">20dp</item>
        <item name="cardBackgroundColor">#26ffffff</item>
 </style>

Если я использую непрозрачный cardBackgroundColor, то внутренний прямоугольник исчезает, но это не решение.Мне нужно использовать полупрозрачный цвет, как раньше.Может кто-нибудь помочь мне преодолеть это, пожалуйста?Обратите внимание, что это происходит только в Android Pie .

Ответы [ 3 ]

0 голосов
/ 11 июня 2018

Попробуйте установить

android:background="@null"

для LinearLayout внутри CardView или для TextViews внутри этого LinearLayout.

Таким образом, вы полностью удалите фон, чтобы не было перерисовок.

0 голосов
/ 07 августа 2018

обратно совместимая высота в последней версии

app:cardElevation="0dp"

ИЛИ

<item name="cardElevation">0dp</item>
0 голосов
/ 11 июня 2018

Используйте эту надежду, это будет работать:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/rootView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="...">

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:gravity="center"
    android:text="..." />

<android.support.v7.widget.CardView
    android:layout_width="match_parent"
    style="@style/translucentCard"
    android:layout_marginTop="@dimen/activity_vertical_margin"
    android:layout_height="wrap_content">

    <LinearLayout
        style="@style/paddedContainer"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@android:color/transparent"
        android:orientation="vertical">

        <android.support.design.widget.TextInputLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="@string/login_email">

            <EditText
                android:id="@+id/.."
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:inputType="textEmailAddress"
                android:padding="8dp" />
        </android.support.design.widget.TextInputLayout>

        <android.support.design.widget.TextInputLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="@string/login_password">

            <EditText
                android:id="@+id/editTextPasswordForLogin"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:inputType="textPassword"
                android:padding="8dp" />
        </android.support.design.widget.TextInputLayout>
    </LinearLayout>
</android.support.v7.widget.CardView>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="@dimen/activity_vertical_margin"
    android:orientation="horizontal">

    <TextView
        android:id="@+id/textViewForgotPassword"
        style="@style/WarrentyLifeTheme.TextAppearance.Small"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="@string/login_forgot_password" />

    <Space
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1" />

    <Button
        android:id="@+id/buttonLogin"
        android:layout_width="wrap_content"
        android:layout_height="@dimen/buttonHeight"
        android:paddingLeft="36dp"
        android:paddingRight="36dp"
        android:text="@string/dashboard_button_login" />

</LinearLayout>
...