- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当前更新:仍未解决!
问题:Dialog/AlertDialog/AlertDialogBuilder/MaterialAlaertDialogBuilder 是否可以在 Android 中同时使用圆角和 DayNight 主题的组合?
我很累,但我不认为这是可能的。只有一件事会奏效。
你可以建议我使用 Material 库。
在Dialog中真的可以使用主题样式的圆角吗?
代码:
public void showFeedbackDialog(int code) {
exitCode = code;
dialog = new Dialog(context, R.style.dialogBoxStyle);
View dialogView = LayoutInflater.from(context).inflate(R.layout.row_feedback_dialog, null);
name = dialogView.findViewById(R.id.feedback_name);
email = dialogView.findViewById(R.id.feedback_email);
content = dialogView.findViewById(R.id.feedback_content);
TextView nameError = dialogView.findViewById(R.id.nameError);
emailError = dialogView.findViewById(R.id.emailError);
feedbackError = dialogView.findViewById(R.id.feedbackError);
progressBar = dialogView.findViewById(R.id.progress_bar);
skip = dialogView.findViewById(R.id.skip);
submit = dialogView.findViewById(R.id.button_positive);
cancel = dialogView.findViewById(R.id.button_negative);
dialog.setContentView(dialogView);
if (code == 101) {
skip.setVisibility(View.VISIBLE);
} else if (code == 102) {
skip.setVisibility(View.GONE);
}
dialog.setOnShowListener(new DialogInterface.OnShowListener() {
@Override
public void onShow(DialogInterface dialog) {
submit.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (checkValidation()) {
addFeedbackData();
}
}
});
cancel.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
dialog.dismiss();
}
});
skip.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (code == 101) {
FeedbackDialog.this.dialog.dismiss();
FixedCategorySingleton.getInstance().setNullObject();
activity.finishAffinity();
}
}
});
}
});
dialog.setCancelable(false);
dialog.show();
dialog.getWindow().getAttributes().windowAnimations = R.style.DialogAnimation;
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
}
row_feedback_dialog
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView 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:focusableInTouchMode="true"
android:background="@drawable/dialog_positive_round"
app:cardCornerRadius="12dp"
android:orientation="vertical">
<include
layout="@layout/row_progress_bar"
android:visibility="gone" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dp">
<TextView
style="@style/dialog_hint_textview_style"
android:text="Please share your Feedback"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
style="@style/hint_textview_style"
android:text="@string/name" />
<EditText
android:id="@+id/feedback_name"
style="@style/edit_text_style"
android:singleLine="true"
android:imeOptions="actionNext" />
</LinearLayout>
<include
android:id="@+id/nameError"
layout="@layout/row_error_textview" />
<!-- <EditText
android:id="@+id/feedback_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:backgroundTint="@color/colorIconLightGray"
android:hint="Name (Optional)"
android:inputType="textPersonName"
android:textColor="?attr/textcolor" />-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
style="@style/hint_textview_style"
android:text="@string/email" />
<EditText
android:id="@+id/feedback_email"
style="@style/edit_text_style"
android:singleLine="true"
android:imeOptions="actionNext" />
</LinearLayout>
<include
android:id="@+id/emailError"
layout="@layout/row_error_textview" />
<!-- <EditText
android:id="@+id/feedback_email"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:backgroundTint="@color/colorIconLightGray"
android:hint="Email (Optional)"
android:inputType="textEmailAddress"
android:textColor="?attr/textcolor" />-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
style="@style/hint_textview_style"
android:text="What would you like to tell us?" />
<EditText
android:id="@+id/feedback_content"
style="@style/edit_text_style"
android:maxLines="4"
android:imeOptions="actionDone" />
</LinearLayout>
<!-- <EditText
android:id="@+id/feedback_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:backgroundTint="@color/colorIconLightGray"
android:gravity="top"
android:hint="What would you like to tell us?"
android:imeOptions="actionDone"
android:inputType="textMultiLine"
android:lines="5"
android:textColor="?attr/textcolor" />-->
<include
android:id="@+id/feedbackError"
layout="@layout/row_error_textview" />
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="?attr/backgroundcolor">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/skip"
android:layout_width="70dp"
android:layout_height="40dp"
android:background="?attr/backgroundcolor"
android:text="@string/skip_caps"
android:textColor="?attr/textcolor"
android:visibility="gone" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:orientation="horizontal">
<Button
android:id="@+id/button_negative"
android:layout_width="70dp"
android:layout_height="40dp"
android:background="?attr/backgroundcolor"
android:text="@string/cancel"
android:textColor="?attr/textcolor" />
<Button
android:id="@+id/button_positive"
android:layout_width="70dp"
android:layout_height="40dp"
android:background="?attr/backgroundcolor"
android:text="@string/submit"
android:textColor="?attr/textcolor" />
</LinearLayout>
</RelativeLayout>
</RelativeLayout>
</LinearLayout>
</androidx.cardview.widget.CardView>
风格
<style name="dialogBoxStyle" parent="Theme.AppCompat.DayNight.Dialog.Alert">
<item name="android:background">?attr/backgroundcolor</item>
<item name="android:textColor">?attr/textcolor</item>
<item name="android:textColorAlertDialogListItem">?attr/textcolor</item>
<item name="android:textColorSecondary">?attr/textcolor</item>
<item name="android:textColorPrimary">?attr/textcolor</item>
<item name="colorAccent">?attr/textcolor</item>
<item name="android:typeface">normal</item>
<item name="textColorAlertDialogListItem">?attr/textcolor</item>
</style>
如果我不使用主题那么一切都会正常工作。由于 getWindow 线,角呈圆形。但是,在我的应用程序中,我也在使用主题。
我请求你帮助我,我终于创建了这个帐户,因为我需要解决方案。
更新:
试过 Material 库,没有任何效果
最佳答案
您可以使用 MaterialAlertDialogBuilder
包含在 Material Components library 中.
使用方法 .setView(R.layout.dialog_layout)
来扩展您的自定义布局。
类似于:
new MaterialAlertDialogBuilder(MainActivity.this,
R.style.MyThemeOverlay_MaterialComponents_MaterialAlertDialog)
.setTitle("Dialog")
.setView(R.layout.dialog_layout)
.setPositiveButton("Ok", null)
.setNegativeButton("Skip", null)
.show();
然后使用 shapeAppearanceOverlay
定义您的形状并应用圆角(它需要 v.1.1.0)。
<!-- Alert Dialog -->
<style name="MyThemeOverlay.MaterialComponents.MaterialAlertDialog" parent="@style/ThemeOverlay.MaterialComponents.MaterialAlertDialog">
<item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.MyApp.Dialog.Rounded</item>
<item name="buttonBarPositiveButtonStyle">@style/PositiveButtonStyle</item>
...
</style>
<style name="PositiveButtonStyle" parent="@style/Widget.MaterialComponents.Button.TextButton.Dialog">
<item name="android:textColor">#FFFFFF</item>
<item name="backgroundTint">#00f</item>
</style>
<!-- Rounded corners -->
<style name="ShapeAppearanceOverlay.MyApp.Dialog.Rounded" parent="">
<item name="cornerFamily">rounded</item>
<item name="cornerSize">16dp</item>
</style>
您还可以使用属性 materialThemeOverlay
覆盖应用主题中定义的默认样式/颜色,而无需为所有组件更改它。
类似于:
<style name="MyThemeOverlay.MaterialComponents.MaterialAlertDialog" parent="@style/ThemeOverlay.MaterialComponents.MaterialAlertDialog">
<item name="materialThemeOverlay">@style/MyAlThemeOverlay</item>
...
</style>
<style name="MyAlThemeOverlay" parent="ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox">
<item name="colorPrimary">@color/....</item>
</style>
Material 组件库还支持 DayNight theme .
您的应用主题只需继承自 Theme.MaterialComponents.DayNight
。
类似于:
<style name="Theme.MyApp" parent="Theme.MaterialComponents.DayNight">
<!-- ... -->
</style>
或:
res/values/themes.xml
:
<style name="Theme.MyApp" parent="Theme.MaterialComponents.Light">
<!-- ... -->
</style>
res/values-night/themes.xml
:
<style name="Theme.MyApp" parent="Theme.MaterialComponents">
<!-- ... -->
</style>
在不更改代码的情况下,AlertDialog
继承自应用主题。
关于android - 是否有可能 Dialog 可以在 Android 中同时使用圆角和 Day Night 主题的组合?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58023334/
降本手段一招鲜,增效方法吃遍天; 01 互联网行业里; 降本策略千奇百怪,手段却出奇一致;增效方法五花八门,手段更是花里胡哨; 对于企业来说;
有什么方法可以使用 angularjs 中的部分进行代码分组吗? 原因 --- 我的 Controller 包含太多代码。该 Controller 包含了多个方法和大量功能的代码,降低了代码的可读性。
不幸的是,我的数据库的数据模型必须改变,所以我正在寻找最轻松的方式来迁移我的数据。 此时情况如何: create table cargo{ id serial primary key, per
在 QTextEdit 对象中,假设我想知道字符在鼠标光标下的位置。 我会写... void MyQTextEditObject::mousePressEvent(QMouseEvent* mouse
是否可以在 C++ 中返回一个 return 语句或做一些具有类似功能的事情? 例如,如果代码中有几个函数将指针作为输入,并且每个函数都检查指针是否为 nullptr,这将很方便。如果它是一个 nul
我的 PC 上有一个控制台应用程序,它是 signalR 服务器。 我有一个 html 页面,它是互联网上的 signalR 客户端。但我尝试连接服务器,但我有一个错误的请求 400 错误。如果服务器
我想将应用程序作为后台进程运行。当点击应用程序图标时,它不会显示任何 View ,只会启动后台进程。 最佳答案 对于 iOS 这是不可能的,但是对于 android,react native 有 he
我知道有(昂贵的)框架可以让你在 VS C# 中编写 android 应用程序并将其编译为 android apk。 我也知道,可以在 VS 中编写 Java 应用程序(link)。 是否有可能,甚至
我在做: can :manage, :all if user.role == 'admin' can :approve, Anuncio do |anuncio| anuncio.try(:apr
我是一名优秀的程序员,十分优秀!