我无法将图像放置在桌面中央。图像始终在左侧。它是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>
答案 0 :(得分:1)
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。
答案 1 :(得分:0)
尝试这个,希望它对您有用
<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>
答案 2 :(得分:0)
只需尝试一下:
<?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>
答案 3 :(得分:0)
您必须使用布局(ConstraintLayout
或RelativeLayout
或LinearLayout
)来管理卡片视图中的多个视图
当前,Android UI系统已与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>
谢谢。
答案 4 :(得分:0)
请尝试以下代码:
<?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>
希望它对您有用。