gpt4 book ai didi

java - ImageButton 不会重叠在卡片 View 上,而是一个普通按钮//ImageButton 不与卡片 View 重叠,但按钮正常

转载 作者:行者123 更新时间:2023-12-01 19:31:21 26 4
gpt4 key购买 nike

我正在开发一个应用程序,在某些时候它会显示一些“学习表”。问题是,对于每个项目,它应该显示两个按钮,这些按钮应该重叠在卡片 View 上,但它只适用于普通按钮,而使用图像按钮则不会发生这种情况。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto">

<android.support.v7.widget.CardView
android:id="@+id/sheet_card_view"
android:layout_width="match_parent"
android:layout_height="120dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="32dp"
android:layout_marginRight="16dp"
android:layout_marginBottom="32dp"
android:elevation="8dp"
app:cardCornerRadius="8dp">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="8dp"
android:background="?android:attr/selectableItemBackground">

<TextView
android:id="@+id/sheet_text_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:text="SAMPLE OF CONTENT.SAMPLE OF CONTENT.SAMPLE OF CONTENT.SAMPLE OF CONTENT"
android:textSize="15sp"
android:autoSizeMinTextSize="10sp"
android:autoSizeMaxTextSize="20sp"
android:autoSizeStepGranularity="2sp"/>

</RelativeLayout>

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

<ImageButton
android:id="@+id/sheet_flip_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignTop="@id/sheet_card_view"
android:layout_marginTop="-32dp"
android:layout_marginRight="20dp"
android:src="@drawable/ic_flip_white_24dp"/>

<Button
android:id="@+id/sheet_show_image_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignBottom="@id/sheet_card_view"
android:layout_marginBottom="-32dp"
android:layout_marginLeft="20dp"/>

</RelativeLayout>

ScreenShoot of App

最佳答案

Button 在 Material 主题下具有默认标高(实际上,它有一个 StateListAnimator,在启用按钮时提供标高),而 ImageButton 没有,因此您必须自己添加海拔

关于java - ImageButton 不会重叠在卡片 View 上,而是一个普通按钮//ImageButton 不与卡片 View 重叠,但按钮正常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59257404/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com