3

我正在 Android Jelly Beans OS 上创建一个警报对话框。一切正常,但我想要的是透明背景而不是警报对话框的黑色背景。我在 stackoverflow 上阅读了很多文章和用户的问题,但没有一个能帮助我。

这是我的代码:

AlertDialog.Builder builder =  new AlertDialog.Builder(this, R.style.CustomAlertDialog);
    builder.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog1, int which) {
            gActivityResult = REQUEST_PICK_CONTACT;
            onResume();
            return;
        } }); 
    builder.setNegativeButton(android.R.string.cancel, new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog1, int which) {
            return;
        } }); 
    View view = getLayoutInflater().inflate(R.layout.alert_dialog, null);
    builder.setTitle(R.string.gender_age);
    builder.setInverseBackgroundForced(false);
    builder.setView (view);


    dialog = builder.create ();

这是我在 res/values/styles.xml 中定义的 CustomAlertDialog

<style name="CustomAlertDialog" parent="@android:style/Theme.Dialog">
    <!-- All customizations that are NOT specific to a particular API-level can go here. -->
    <item name="android:windowFrame">@null</item>
    <item name="android:windowIsFloating">true</item> 
    <item name="android:windowContentOverlay">@null</item>
    <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
    <item name="android:windowBackground">@color/transparent_color</item>
    <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
    <item name="android:colorBackgroundCacheHint">@null</item>
    <item name="android:gravity">left</item>
</style>

这是color.xml

<resources>
   <color name="transparent_color">#00000000</color>
</resources>

但这对我没有帮助。

我的问题:这可行吗?如果是的话,你能指导我正确的方向吗?

4

4 回答 4

7

我发现这种方式与 AlertDialog.Builder 兼容。使用 Eclipse 中 Android“设备”选项卡中的“转储视图层次结构”按钮,我看到了许多嵌套的 FrameLayout,看起来背景在这些中,而不是在窗口中。

遍历这些视图并将每个实际工作的背景设置为透明(然后我的自定义视图漂浮在变暗的应用程序上,没有框架或背景,并且布局没有变化)。我有一个自定义视图,因此从它向下遍历,但是从窗口向上遍历 ViewGroups 也应该可以工作。

我在我自己的 DialogFragment 子类中使用 AlertDialog.Builder 和自定义视图。

   @Override
   public Dialog onCreateDialog(Bundle savedInstanceState) {
    final AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
    configureDialogBuilder(builder);

    final LayoutInflater inflater = getActivity().getLayoutInflater();
    customView = inflater.inflate(customViewId, null);
    builder.setView(customView);

    final AlertDialog dialog = builder.create();
    return dialog;
  }

  @Override
  public void onStart() {
    super.onStart();
    clearBackgrounds(customView);
  }

  private void clearBackgrounds(View view) {
    while (view != null) {
      view.setBackgroundResource(android.graphics.Color.TRANSPARENT);

      final ViewParent parent = view.getParent();
      if (parent instanceof View) {
        view = (View) parent;
      } else {
        view = null;
      }
    }
  }
于 2013-11-16T06:42:32.280 回答
3

如果您还没有阅读自定义样式 AlertDialog问题的样式属性,您应该继续阅读。答案建议使用Dialog而不是Alert Dialog. 此外阅读为什么 LayoutInflater 会忽略我指定的 layout_width 和 layout_height 布局参数?问题LayoutInflater可能会清楚一点。希望能帮助到你。试试看,让我知道它是否有效。

于 2013-06-19T22:35:37.440 回答
3

我必须为我的一个项目做类似的事情。我所做的只是为AlertDialog.

不确定这是否是您所追求的,但将其发布在这里以防万一...

活动

public class ShowAlertDialogActivity extends FragmentActivity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.alert_dialog);

        AlertDialog.Builder builder = new AlertDialog.Builder(this);
        // create the builder

        AlertDialog alert = builder.create();
        alert.show();
    }
}

我在布局中将背景设置为透明(alert_dialog.xml)...

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" 
    android:background="@android:color/transparent">
</LinearLayout>

并将活动添加到清单中......

<activity
    android:name=".ShowAlertDialogActivity"
    android:label="@string/app_title"
    android:theme="@style/AppTheme"
    android:launchMode="singleTask" />

这为我完成了工作。

希望这可以帮助。

于 2013-06-20T00:09:16.523 回答
3

只需调用,

customDialog.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));

就在之前

customDialog.show();
于 2014-12-01T14:33:11.063 回答