gpt4 book ai didi

android - 是否有可能 Dialog 可以在 Android 中同时使用圆角和 Day Night 主题的组合?

转载 作者:行者123 更新时间:2023-11-29 02:18:35 25 4
gpt4 key购买 nike

当前更新:仍未解决!

问题:Dialog/AlertDialog/AlertDialogBu​​ilder/MaterialAlaertDialogBu​​ilder 是否可以在 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>

enter image description here

您还可以使用属性 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/

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