Как центрировать изображение в CardView - PullRequest
0 голосов
/ 09 июля 2019

Я не могу получить изображение в центре рабочего стола.Изображение всегда на левой стороне.Это LinearLayout, я какой-то ScrollView.

        <android.support.v7.widget.CardView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:cardCornerRadius="80dp"
            app:cardElevation="10dp"
            android:gravity="center"
            android:orientation="vertical">

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/titelbild280x280"
                android:layout_centerHorizontal="true"
                android:layout_centerVertical="true"/>

        </android.support.v7.widget.CardView>

Ответы [ 5 ]

1 голос
/ 09 июля 2019

CardView является расширением FrameLayout.Поэтому вы должны использовать те же значения макета, что и в FrameLayout.
Для центрирования дочернего представления вы используете:

android:layout_gravity="center"

Таким образом, ваш макет становится:

    <android.support.v7.widget.CardView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:cardCornerRadius="80dp"
        app:cardElevation="10dp"
        android:orientation="vertical">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:src="@drawable/titelbild280x280"
            />

    </android.support.v7.widget.CardView>

ОднакоОбратите внимание, что CardView в этом примере использует wrap_content, поэтому он надежно обернет изображение, и по центру ничего не останется.Чтобы сила тяжести имела эффект, CardView должен быть больше, чем ImageView.

0 голосов
/ 10 июля 2019

Пожалуйста, попробуйте следующий код:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:gravity="center">

    <android.support.v7.widget.CardView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:cardCornerRadius="10dp"
        app:cardElevation="10dp"
        android:orientation="vertical">
            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/titelbild280x280"
                android:layout_gravity="center"/>
    </android.support.v7.widget.CardView>

</LinearLayout>

Я надеюсь, что это работает для вас.

0 голосов
/ 10 июля 2019

Вы должны использовать макет (ConstraintLayout или RelativeLayout или LinearLayout) для управления множественным просмотром в представлении карты. В настоящее время система пользовательского интерфейса Android тесно связана с ConstraintLayout для работы со сложным макетом и упрощения его работы, поэтомукоды могут помочь вам

<android.support.v7.widget.CardView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:cardCornerRadius="80dp"
    app:cardElevation="10dp"
    android:gravity="center"
    android:orientation="vertical">

    <android.support.constraint.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/titelbild280x280"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"/>

    </android.support.constraint.ConstraintLayout>

</android.support.v7.widget.CardView>

Спасибо.

0 голосов
/ 10 июля 2019

Просто попробуйте это:

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    tools:context=".MainActivity">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:adjustViewBounds="true"
        android:src="@drawable/some_img" />

</androidx.cardview.widget.CardView>
0 голосов
/ 10 июля 2019

Попробуйте это Надеюсь, это будет работать для вас

 <android.support.v7.widget.CardView
       android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:cardCornerRadius="80dp"
        app:cardElevation="10dp"
        android:gravity="center"
        android:foreground="?android:attr/selectableItemBackground"
        android:clickable="true"
        android:orientation="vertical">

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <ImageView
            android:id="@+id/featureimage"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:layout_centerInParent="true"
            android:src="@drawable/image"/>


    </RelativeLayout>


</android.support.v7.widget.CardView>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...