- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我目前正在开发一个基本的 Activity 组织者,它将为 session 存储事件并允许用户存储他们感兴趣的事件。
但是我遇到了问题,因为我想为每个按下的按钮添加一个对话框,以便它显示事件信息并为用户提供是否要添加的选项。
我在代码中遇到的问题如下,在点击时发生。
android.view.WindowManager$BadTokenException:无法添加窗口 -- token null 不适用于应用程序
下面是显示在屏幕上的事件按钮本身的代码
public class EventButton extends Button
{
public Button button = this;
public Event event;
public String eventHost;
public String eventName;
public String eventLocation;
public Calendar eventDate;
private LinearLayout screen;
public EventButton(Context context , Event pEvent){
super(context);
eventDate = pEvent.eventDate;
eventName = pEvent.eventName;
eventHost = pEvent.eventHost;
eventLocation = pEvent.eventLocation;
event = pEvent;
setOnClick();
this.setText(eventName + "\n " + eventHost);
}
public void setOnClick() {
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
int timeTilEvent =getTimeDifference();
int day = eventDate.get(eventDate.DAY_OF_MONTH);
int month=eventDate.get(eventDate.MONTH);
int year=eventDate.get(eventDate.YEAR);
int hour=eventDate.get(eventDate.HOUR_OF_DAY);
int minute=eventDate.get(eventDate.MINUTE);
String minutestring=""+ minute;
if(minutestring.length()==1){
minutestring = "0"+minute;
}
String dateOutput= day + "/" + month +"/" + year + "\n " + hour + ":" + minutestring;
AlertDialog.Builder builder = new AlertDialog.Builder(getContext());
builder.setMessage("Event:" + eventName + "\n Host:" + eventHost + "\n Location: " + eventLocation + "\n When: " + dateOutput);
builder.setTitle("do you wish to add this event to your watch list?");
if(!FileManager.eventList.contains(event)) {
builder.setPositiveButton("add interest", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
FileManager.writeToFile(new Event(eventHost, eventName, eventLocation, eventDate), getContext());
FileManager.readFromFile(getContext());
}
});
}
else if(FileManager.eventList.contains(event)) {
builder.setPositiveButton("remove interest", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
FileManager.eventList.remove(event);
FileManager.writeToFile(new Event(eventHost, eventName, eventLocation, eventDate), getContext());
FileManager.readFromFile(getContext());
}
});
}
builder.setPositiveButton("cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
}
});
AlertDialog dialog = builder.create();
dialog.show();
主类(显示按钮是如何创建的)
public class MainActivity extends AppCompatActivity {
public Calendar setupDate(int year, int month, int day , int hour, int minute){
return new GregorianCalendar(year,month,day,hour,minute);
}
ArrayList<EventButton> buttons = new ArrayList<EventButton>();
public void addButtonToList(String pHost, String pName,String pEventLocation, Calendar pDate){
Event event = new Event(pHost, pName, pEventLocation, pDate);
buttons.add(new EventButton(getBaseContext(),event));
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.content_main);
addButtonToList("Host ", " Event", "location", setupDate(2016, 04, 03, 10, 00));
addButtonToList("Host ", " Event", "location", setupDate(2016, 04, 03, 10, 00));
LinearLayout ll = (LinearLayout) findViewById(R.id.LinearLayout1);
LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(ActionBar.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
for(int count=0;count < buttons.size();count++){
if(buttons.get(count) != null) {
buttons.get(count).AddButtonToScreen(ll, lp);
}
}
}
非常感谢任何帮助,谢谢
(目录输出,如果有人感兴趣或需要的话)
04-03 18:26:20.267 4335-4335/? E/Zygote: v2
04-03 18:26:20.267 4335-4335/? I/libpersona: KNOX_SDCARD checking this for 10160
04-03 18:26:20.267 4335-4335/? I/libpersona: KNOX_SDCARD not a persona
04-03 18:26:20.267 4335-4335/? I/SELinux: Function: selinux_compare_spd_ram , priority [2] , priority version is VE=SEPF_SM-G361F_5.1.1_0043
04-03 18:26:20.267 4335-4335/? E/SELinux: [DEBUG] get_category: variable seinfo: default sensitivity: NULL, cateogry: NULL
04-03 18:26:20.277 4335-4335/? I/art: Late-enabling -Xcheck:jni
04-03 18:26:20.287 4335-4335/? D/TimaKeyStoreProvider: in addTimaSignatureService
04-03 18:26:20.307 4335-4335/? D/TimaKeyStoreProvider: TimaSignature is unavailable
04-03 18:26:20.307 4335-4335/? D/ActivityThread: Added TimaKesytore provider
04-03 18:26:20.307 4335-4335/? I/SAMP: ActivityThread() - SAMP_ENABLE : true
04-03 18:26:20.357 4335-4335/com.example.daniel.myapplication D/ContextImpl: ContextImpl running for user UserHandle{0} 0
04-03 18:26:20.367 4335-4335/com.example.daniel.myapplication D/ContextImpl: ContextImpl running for user UserHandle{0} 0
04-03 18:26:20.367 4335-4335/com.example.daniel.myapplication W/ResourcesManager: getTopLevelResources: null for user 0
04-03 18:26:20.437 4335-4335/com.example.daniel.myapplication D/ContextImpl: ContextImpl running for user UserHandle{0} 0
04-03 18:26:20.447 4335-4335/com.example.daniel.myapplication D/ContextImpl: ContextImpl running for user UserHandle{0} 0
04-03 18:26:20.447 4335-4335/com.example.daniel.myapplication W/ResourcesManager: getTopLevelResources: null for user 0
04-03 18:26:20.447 4335-4335/com.example.daniel.myapplication W/ResourcesManager: getTopLevelResources: null for user 0
04-03 18:26:20.457 4335-4335/com.example.daniel.myapplication D/DisplayManager: DisplayManager()
04-03 18:26:20.497 4335-4335/com.example.daniel.myapplication D/PhoneWindow: *FMB* installDecor mIsFloating : false
04-03 18:26:20.497 4335-4335/com.example.daniel.myapplication D/PhoneWindow: *FMB* installDecor flags : -2139029248
04-03 18:26:20.557 4335-4398/com.example.daniel.myapplication D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true
04-03 18:26:20.577 4335-4335/com.example.daniel.myapplication D/PhoneWindow: *FMB* isFloatingMenuEnabled mFloatingMenuBtn : null
04-03 18:26:20.577 4335-4335/com.example.daniel.myapplication D/PhoneWindow: *FMB* isFloatingMenuEnabled return false
04-03 18:26:20.627 4335-4398/com.example.daniel.myapplication I/OpenGLRenderer: Initialized EGL, version 1.4
04-03 18:26:20.627 4335-4398/com.example.daniel.myapplication D/GC: <tid=4398> OES20 ===> GC Version : GC version rls_5011p6_GC5.5.14
04-03 18:26:20.637 4335-4398/com.example.daniel.myapplication D/OpenGLRenderer: Enabling debug mode 0
04-03 18:26:20.757 4335-4335/com.example.daniel.myapplication W/IInputConnectionWrapper: showStatusIcon on inactive InputConnection
04-03 18:26:20.757 4335-4335/com.example.daniel.myapplication I/Timeline: Timeline: Activity_idle id: android.os.BinderProxy@25ba99d time:70384960
04-03 18:26:32.137 4335-4335/com.example.daniel.myapplication I/Timeline: Timeline: Activity_idle id: android.os.BinderProxy@25ba99d time:70396347
04-03 18:26:33.527 4335-4335/com.example.daniel.myapplication D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
04-03 18:26:33.647 4335-4335/com.example.daniel.myapplication D/PhoneWindow: *FMB* installDecor mIsFloating : true
04-03 18:26:33.647 4335-4335/com.example.daniel.myapplication D/PhoneWindow: *FMB* installDecor flags : 8388610
04-03 18:26:33.687 4335-4335/com.example.daniel.myapplication D/AndroidRuntime: Shutting down VM
04-03 18:26:33.687 4335-4335/com.example.daniel.myapplication E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.daniel.myapplication, PID: 4335
android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application
at android.view.ViewRootImpl.setView(ViewRootImpl.java:578)
at android.view.WindowManagerGlobal.addView(WindowManagerGlobal.java:282)
at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:85)
at android.app.Dialog.show(Dialog.java:298)
at com.example.daniel.myapplication.EventButton$1.onClick(EventButton.java:195)
at android.view.View.performClick(View.java:5076)
at android.view.View$PerformClick.run(View.java:20279)
at android.os.Handler.handleCallback(Handler.java:739)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5910)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1405)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1200)
最佳答案
当您应该使用 Activity Context 时,您却在使用 Base Context。
不使用 getBaseContext()
,只需将 this
用于 Activity Context:
public void addButtonToList(String pHost, String pName,String pEventLocation, Calendar pDate){
Event event = new Event(pHost, pName, pEventLocation, pDate);
buttons.add(new EventButton(this, event));
}
关于android - 问题添加 Android 对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36388619/
我有一个删除按钮,单击该按钮时我希望弹出一个对话框,然后单击“确定”它应该执行 Ajax 调用,否则不应该执行任何操作。这是代码 $('.comment-delete').click(function
public void exitGame() { //pop up dialogue Platform.exit(); } 我已经尝试了很多我在互联网上看到的不同的东西,但我什么都做不了。我所
我有一个典型的素面对话框,效果很好,但是当有人在对话框外单击时,我找不到任何关闭它的选项。我看到了一些jquery示例,我想我可以将其改编为primefaces对话框,但首先要确保还没有解决方案? 谢
我试图让 jquery 对话框在单击按钮时启动,但似乎不起作用。任何帮助将不胜感激: $('#wrapper').dialog({ autoOpen: false,
我试图单独更改标题栏颜色。所以我使用了 .ui-dialog-titlebar ,但它不起作用,所以我尝试使用 ui-widght-header ,它也反射(reflect)到数据表..请告知。 //
我的页面上有 div(box),我正在使用此脚本将 div 显示为对话框。在该 div 内,我有一个超链接,单击该超链接时,我想淡出对话框并关闭。对话框的内容淡出,但对话框的边框保持不变。如果我将 $
我当前有一个对话框,其内容有两个输入(这两个输入使用 .datepicker())。当我打开对话框时,第一个输入成为焦点,并且第一个日期选择器自动出现。我尝试隐藏 div 并模糊输入,但这会导致日期选
我想即时创建一个 jQuery 对话框。我正在使用这个: var newDiv = $(document.createElement('div')); $(newDiv).html('hello th
child: RaisedButton( color: const Color(0xFF5867DD), onPressed: (){ updateProfilePic();
我有下面的 jquery 代码,我已根据我的要求对其进行了自定义,但存在一些问题。首先,用户单击“单击此处”,不会显示对话框。当用户单击“关闭”时,对话框不会消失。非常感谢您提供的所有帮助。
如何创建一个对话框,该对话框的顶部有一个文本,其下方有一个空白区域,用户可以在其中键入内容,在右侧下方有一个 OKAY 按钮,当您单击该按钮时,对话框消失? 像这样: 最佳答案 String inpu
这是一个简单得多的问题。 private static AplotBaseDialog dlg; public Object execute(final ExecutionEvent event) t
我正在为我的应用程序开发小部件。应该有一些小部件可以实现相同的功能,唯一的区别在于它们的布局(主题/外观) 我会创建一个对话框或屏幕,用户可以在其中选择他喜欢的小部件。当我选择它们时,我在很多小部件中
我有 jQuery 对话框窗口,在某些操作中我有一个加载的 blockUI 插件。 我面临的问题是,即使 AJAX 图像仍在显示,我仍然能够在执行 ajax 操作时执行操作。 另一方面,JSP 页面在
我非常熟悉将 jQuery 对话框 div 设置为可见后将其附加到表单元素的技巧。我已经在 .NET 中这样做了一百次左右,而且效果很好!然而,我正在尝试在 Coldfusion 网站上执行此操作,这
我想使用jquery对话框来收集用户信息(例如用户名)。我如何使用 Jquery 做到这一点并将数据收集到 Javascript 变量中? 这是我迄今为止的尝试: // Dialog here, ho
如何设置 jquery 对话框按钮的工具提示?请参阅下面的内容...这里没有 id 或样式类。 jQuery("#dialog-form").dialog ({ autoOpen: false,
我有调用对话框的 JS 函数 function SomeFunction { $('#editformdialog').dialog('open'); } 这显然已经简化了。但是,我得到 a is u
我正在使用 jquery 模式对话框来显示部分 View 中的数据表。在部分 View 中,我有一些脚本,用于将 HTML 表更改为 jquery DataTables。因此,我需要确保表格在对话框中
我正在尝试添加透明的 JQuery 对话框。但我遇到了两个问题: 文本“Hello”的背景不会变得透明 删除标题栏后,我无法再拖动对话框 这些评论是我迄今为止尝试过的。 //Create ne
我是一名优秀的程序员,十分优秀!