- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我在 SO 中搜索了此类错误,但找不到在 onResume() 方法中创建自定义对话框时触发此 requestFeature() 错误的解决方案。
我调用 dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); 在像这样设置内容 View 之前 dialog.setContentView(R.layout.fav_info_dialog);
下面是我的代码
@Override
protected void onResume() {
super.onResume();
supportInvalidateOptionsMenu();
ActivityCompat.invalidateOptionsMenu(Converter.this);
// update the title
updateTheTittle(getResources().getString(R.string.menu_units));
cancleBtn.setVisibility(View.GONE);
//
if (mSharedPref.getInt(Constants.HOME_INFO_DIALOG_STATUS, 0) == 0)
if (mSharedPref.getInt(Constants.DASHOBOARD_TYPE,
Constants.GridView) == 2)
createCustomDialog();
}
private void createCustomDialog() {
final Dialog dialog = new Dialog(this);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setContentView(R.layout.fav_info_dialog);
dialog.setCanceledOnTouchOutside(true);
Button button = (Button) dialog.findViewById(R.id.desc_ok);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
SharedPreferences mSharedPref = getSharedPreferences(
Constants.PREFERENCE_FILENAME, Activity.MODE_PRIVATE);
SharedPreferences.Editor editor = mSharedPref.edit();
editor.putInt(Constants.HOME_INFO_DIALOG_STATUS, 1);
editor.commit();
dialog.dismiss();
}
});
dialog.show();
}
最佳答案
试试下面的代码:-
final Dialog dialog = new Dialog(this,android.R.style.Theme_Translucent_NoTitleBar_Fullscreen);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setContentView(R.layout.myxml);
关于Android:Dialog 和 onResume() 方法中的 requestWindowFeature 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27716826/
我正在尝试从另一个名为 MyFunctions 的类访问 requestWindowFeature() 这是我的 MyFunctions 类 public class MyFunctions {
requestWindowFeature() 有什么作用?我用它来创建自定义标题栏,但我不太明白它的用途是什么。 SDK 文档中提供的解释here没有意义。 最佳答案 每个 Activity 都有一个
我已经提到了很多问题....但没有任何答案适用于我的情况....请帮助我...... package com.example.owner.bikeguard; import android.suppo
当我添加此行时应用程序崩溃 `requestWindowFeature(Window.FEATURE_NO_TITLE); 也许解决方案很简单,但我真的不知道该找谁来解决。 Java代码: publi
我是一个Android初学者,我写了一个非常简单的项目。一切都好。但是当我编写 requestWindowFeature(Window.FEATURE_NO_TITLE); 时,项目运行失败。 IDE
示例代码: // activity contains different controls so inherits from Activity public class Main extends Ac
到目前为止,我在从 ActionBarSherlock 迁移到 ActionBarCompat 时没有遇到更大的问题。在我的 Nexus 4 上效果很好。当我开始在运行 2.3.6 的旧 Nexus
当用户点击“开始”按钮时,我正在设置一个特定的 Activity 全屏。 在这种情况下,showStopButton() 被调用。 运行良好。但是如果我插入 requestWindowFeature
几乎在标题中。 已经看到了这个,经过一番搜索后似乎无法找出它的实际作用或不确定的进展。 requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRE
import android.content.pm.ActivityInfo; import android.os.Bundle; import android.preference.ListPref
您好,我在 SO 中搜索了此类错误,但找不到在 onResume() 方法中创建自定义对话框时触发此 requestFeature() 错误的解决方案。 我调用 dialog.requestWindo
我的问题正是Custom titlebar - system titlebar being shown for a brief moment? 但我无法获得与@Jerry 在最佳答案中所写相同的结果。
我想知道如何用 C# 编写这段代码 requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowMana
当我单击按钮时,显示 AlertDialog。 但点击按钮,显示标题栏。我想删除标题栏。所以我试试 builder.requestWindowFeature(Window_FEATURE_NO_TIT
我正在尝试在 Android Activity 中显示 WebView 的加载进度。当我尝试显示窗口的进度条时: requestWindowFeature( Window.FEATURE_PROGRE
我是一名优秀的程序员,十分优秀!