- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
因为我项目中的一些需求,我必须使用MaterialComponents,所以我以前的UI变得凌乱,我需要改变它。
带有 AppCompat 的上一张图片:
带有 MaterialComponents 的新图像:
<style name="ButtonBorderless" parent="Base.Widget.AppCompat.Button.Borderless">
<item name="android:minHeight">0dp</item>
<item name="android:minWidth">0dp</item>
<item name="android:textSize">14sp</item>
</style>
主要风格:
<style name="DayTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
按钮:
<Button
android:id="@+id/btn_interval_decrease"
style="@style/ButtonBorderless"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:paddingLeft="10dp"
android:paddingTop="5dp"
android:paddingRight="10dp"
android:paddingBottom="5dp"
android:text="-"
android:textColor="?attr/icon_color"
android:textSize="20dp" />
请注意:这张图有两个问题:1.无边框按钮2.勾选WE按钮,最后是切割
完整的 XML:
<?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"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
app:cardCornerRadius="8dp"
android:background="?attr/cardbackgroundColor"
app:cardElevation="4dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/cardbackgroundColor">
<LinearLayout
android:id="@+id/main_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="?attr/cardbackgroundColor"
android:padding="15dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/cardbackgroundColor"
android:padding="15dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="@string/repeat"
android:textColor="?attr/day_colorDarkGray_night_colorWhite"
android:textSize="16sp"
android:textStyle="bold" />
<Switch
android:id="@+id/switch_repeat"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:paddingLeft="18dp"
android:paddingRight="16dp" />
</LinearLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/cardbackgroundColor">
<LinearLayout
android:id="@+id/layout_repeat"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:background="?attr/cardbackgroundColor"
android:orientation="vertical"
android:padding="15dp">
<androidx.cardview.widget.CardView
android:id="@+id/card_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:background="@drawable/selector_tab_reminder_type"
app:cardElevation="0dp">
<RelativeLayout
android:id="@+id/tab_relative_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/selector_tab_reminder_type">
<com.google.android.material.tabs.TabLayout
android:id="@+id/tablayout"
android:layout_width="match_parent"
android:layout_height="30dp"
android:clipToPadding="true"
app:tabBackground="@drawable/selector_tab_reminder_type"
app:tabGravity="fill"
app:tabIndicatorColor="@null"
app:tabMode="fixed"
app:tabPaddingBottom="0dp"
app:tabPaddingEnd="0dp"
app:tabPaddingStart="0dp"
app:tabPaddingTop="0dp"
app:tabSelectedTextColor="@color/colorWhite"
app:tabTextAppearance="@style/TabLayoutTextAppearance">
<com.google.android.material.tabs.TabItem
android:id="@+id/tab_daily"
style="@style/tabItem"
android:text="@string/tab_daily" />
<com.google.android.material.tabs.TabItem
android:id="@+id/tab_weekly"
style="@style/tabItem"
android:text="@string/tab_weekly" />
<com.google.android.material.tabs.TabItem
android:id="@+id/tab_monthly"
style="@style/tabItem"
android:text="@string/tab_monthly" />
<com.google.android.material.tabs.TabItem
android:id="@+id/tab_yearly"
style="@style/tabItem"
android:text="@string/tab_yearly" />
</com.google.android.material.tabs.TabLayout>
</RelativeLayout>
</androidx.cardview.widget.CardView>
<include
android:id="@+id/weekdays_error"
layout="@layout/row_error_textview" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:background="?attr/cardbackgroundColor">
<TextView
android:id="@+id/tv_repeat_interval"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:text="@string/repeat_daily"
android:textColor="?attr/day_colorDarkGray_night_colorWhite"
android:textSize="16sp" />
<androidx.cardview.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
app:cardBackgroundColor="?attr/cardbackgroundColor"
app:cardCornerRadius="5dp"
app:cardElevation="0dp">
<LinearLayout
android:layout_width="68dp"
android:layout_height="match_parent"
android:background="@drawable/bg_repeat_reminder"
android:orientation="horizontal">
<Button
android:id="@+id/btn_interval_increase"
style="@style/ButtonBorderless"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:paddingLeft="10dp"
android:paddingTop="5dp"
android:paddingRight="10dp"
android:paddingBottom="5dp"
android:text="+"
android:textColor="?attr/icon_color"
android:textSize="20dp" />
<View
android:layout_width="1dp"
android:layout_height="fill_parent"
android:background="?attr/toolbar_color" />
<Button
android:id="@+id/btn_interval_decrease"
style="@style/ButtonBorderless"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:paddingLeft="10dp"
android:paddingTop="5dp"
android:paddingRight="10dp"
android:paddingBottom="5dp"
android:text="-"
android:textColor="?attr/icon_color"
android:textSize="20dp" />
</LinearLayout>
</androidx.cardview.widget.CardView>
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:background="?attr/cardbackgroundColor">
<Spinner
android:id="@+id/spin_list"
style="@style/Widget.AppCompat.Spinner.Underlined"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginEnd="8dp"
android:backgroundTint="?attr/icon_color"
android:dropDownVerticalOffset="17dp"
android:spinnerMode="dropdown" />
<TextView
android:id="@+id/tv_end_date"
style="@style/ButtonBorderless"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:hint="YYYY-MM-DD"
android:text=""
android:textColor="?attr/day_colorDarkGray_night_colorWhite"
android:visibility="visible" />
</RelativeLayout>
<TextView
android:id="@+id/error_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="2dp"
android:layout_marginBottom="8dp"
android:orientation="vertical"
android:textColor="@color/colorRed"
android:visibility="gone" />
<LinearLayout
android:id="@+id/layout_days"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/cardbackgroundColor"
android:orientation="vertical"
android:visibility="gone">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="10dp"
android:background="?attr/cardbackgroundColor">
<ToggleButton
android:id="@+id/toggleSunday"
android:layout_width="45dp"
android:layout_height="45dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:background="@drawable/selector_day_toggle"
android:gravity="center"
android:padding="8dp"
android:textColor="@color/selector_day_text"
android:textOff="SU"
android:textOn="SU"
android:textSize="16dp" />
<ToggleButton
android:id="@+id/toggleMonday"
android:layout_width="45dp"
android:layout_height="45dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:background="@drawable/selector_day_toggle"
android:gravity="center"
android:padding="8dp"
android:textColor="@color/selector_day_text"
android:textOff="MO"
android:textOn="MO"
android:textSize="16dp" />
<ToggleButton
android:id="@+id/toggleTuesday"
android:layout_width="45dp"
android:layout_height="45dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:background="@drawable/selector_day_toggle"
android:gravity="center"
android:padding="8dp"
android:textColor="@color/selector_day_text"
android:textOff="TU"
android:textOn="TU"
android:textSize="16dp" />
<ToggleButton
android:id="@+id/toggleWednesday"
android:layout_width="45dp"
android:layout_height="45dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:background="@drawable/selector_day_toggle"
android:gravity="center"
android:padding="8dp"
android:textColor="@color/selector_day_text"
android:textOff="WE"
android:textOn="WE"
android:textSize="16dp" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="10dp">
<ToggleButton
android:id="@+id/toggleThursday"
android:layout_width="45dp"
android:layout_height="45dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:background="@drawable/selector_day_toggle"
android:gravity="center"
android:padding="8dp"
android:textColor="@color/selector_day_text"
android:textOff="TH"
android:textOn="TH"
android:textSize="16dp" />
<ToggleButton
android:id="@+id/toggleFriday"
android:layout_width="45dp"
android:layout_height="45dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:background="@drawable/selector_day_toggle"
android:gravity="center"
android:padding="8dp"
android:textColor="@color/selector_day_text"
android:textOff="FR"
android:textOn="FR"
android:textSize="16dp" />
<ToggleButton
android:id="@+id/toggleSaturday"
android:layout_width="45dp"
android:layout_height="45dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:background="@drawable/selector_day_toggle"
android:gravity="center"
android:padding="8dp"
android:textColor="@color/selector_day_text"
android:textOff="SA"
android:textOn="SA"
android:textSize="16dp" />
</LinearLayout>
</LinearLayout>
<View style="@style/view_style" />
</LinearLayout>
<FrameLayout
android:id="@+id/layoutOverlay"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignTop="@id/layout_repeat"
android:layout_alignBottom="@id/layout_repeat"
android:background="@color/colorWhiteTransparent"
android:visibility="visible" />
</RelativeLayout>
</LinearLayout>
</RelativeLayout>
</androidx.cardview.widget.CardView>
最佳答案
我发现这相当于无边框按钮。
style="@style/Widget.MaterialComponents.Button.TextButton"
关于android - MaterialComponents 中 AppCompat.Button.Borderless 的替代方案是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58303666/
我正在尝试从旧的 java swing 应用程序复制符号。这是旧的: 这是我尝试复制这个符号: 除此之外,两个椭圆不在同一维度 - 如果鼠标不在文本字段上,我希望它们显示为标签,但只要鼠标悬停在文本字
Android开发中如何设置按钮的android:foregrounddrawable为无边框?就像 android:background="?android:attr/selectableItemB
有没有办法让方法 performClose: 在我使用 NSBorderlessWindowMask 时工作?我必须重写什么方法? (如果可能的话) 最佳答案 我已经覆盖了一些方法,并且它有效。我现在
我使用这些样式创建了一个无边框窗口:WS_VISIBLE | WS_POPUP | WS_OVERLAPPED 问题是窗口无法移动。我知道我可以做一些事情,比如获取鼠标单击位置,然后计算每次出现 WM
所以,I found out that在 Firefox 中,我可以使用 CSS 的 -moz-appearance 使元素具有 Windows Aero 效果。但是,它似乎不起作用。当我点击按钮时,
因为我项目中的一些需求,我必须使用MaterialComponents,所以我以前的UI变得凌乱,我需要改变它。 带有 AppCompat 的上一张图片: 带有 MaterialComponents
我昨天更新了 android 支持库,现在我在构建我的项目时遇到了这个错误。我已经搜索了解决方案,但没有找到任何有用的东西。 这是我的 build.gradle 文件中的内容 compileSdk
我正在为 Android 开发一个应用程序,我最近将 API 级别目标从 8 更改为 15,现在当 Buttons 在 Linear Layouts 中时,Eclipse 会警告我> 或 表格行. 当
我正在尝试构建一个具有 compileSdkVersion 25 和 targetSdkVersion 25 的项目,但我需要将两者都更改为 23,因此在更改 compileSdkVersion 23
我正在尝试为我的 React Native Android 项目获取 Facebook 登录,当我尝试使用 react-native run-android 构建它时,我收到了这个错误。 一开始我以为
我在 android studio 中启动新项目时收到这些错误。 Error:(1) Error retrieving parent for item: No resource found that
我正在使用 React Native 0.43.4 构建一个 Android 应用。 运行 react-native run-android 后,出现以下错误: /Applications/MAMP/
我是一名优秀的程序员,十分优秀!