- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这真的让我卡住了,在我的 Android 应用程序中单击 Button
时,似乎调用的方法不同步。当我点击下面的 Button
时,我想调用:
loc = new Location(Options.this);
完成后我想调用:
setLocationPref();
实际情况是,当我的程序进入“displayLocations”下面的方法时,它会再次跳回到按钮并调用:
setLocationPref();
我认为错误在于两行代码:
builder.setItems(cs, new DialogInterface.OnClickListener(){
public void onClick(DialogInterface dialog, int item){
如果有人有任何想法请告诉我,非常感谢:)
/** Location selection */
bLocation = (Button) findViewById(R.id.bLocation);
bLocation.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
loc = new Location(Options.this);
loc.locationSelection();
setLocationPref();
}
});
代码跳回到我写的地方/** FAILS HERE */
/** Display locations in a list */
public void displayLocations(){
Log.d("displayLocations", "displayLocations ");
LocationSQL getSetLocation = new LocationSQL(context);
final ArrayList<String> locations = locSQL.allLocations();
final CharSequence[] cs = locations.toArray(new CharSequence[locations.size()]);
AlertDialog.Builder builder = new AlertDialog.Builder(context);
builder.setTitle("Pick your location.");
builder.setItems(cs, new DialogInterface.OnClickListener(){
public void onClick(DialogInterface dialog, int item){
/** FAILS HERE */
Toast.makeText(context, cs[item], Toast.LENGTH_SHORT).show();
String selectedLocation = locations.get(item);
updateLocationInfo(selectedLocation);
}
});
builder.create().show();
}
最佳答案
我认为您需要记住,在 Android 中,对话框不是以串行方式处理的。例如。当我在 PC 上编写我的 SWT 应用程序时,我可以等到对话框得到响应,然后我回去做下一步要做的事情。在 Android 中并非如此。你显示一个对话框,生活继续 - 立即。因此,可能发生的情况是:
您对 loc.locationSelection() 的调用会调用 displayLocations()。当 displayLocations() 开始工作时,按钮监听器中的控件开始执行其下一个任务,即 setLocationPref();
另一件重要的事情是,在 Android 中,您不应该真正尝试像现在这样显示自己的对话框,因为这不会处理诸如屏幕旋转时的状态更改或用户在您的应用程序和其他应用程序之间切换以及您的应用程序被暂停(杀死)了一段时间。您需要在 onCreateDialog() 中创建您的警报,然后在 onPrepareDialog() 中准备它并使用 showDialog() 显示对话框 - 至少在 DialogFragment 出现之前它一直是这样(见下文)。然后操作系统会处理剩下的事情——您需要信任它。
不要直接在对话框上调用 .show()!系统会为您完成。
请注意,这种处理方式已被 DialogFragment 取代。然而,我认为任何人至少用旧方法做一次是好的,也是有教育意义的。这是我在尝试理解状态变化以及如何以传统方式处理对话框时为自己写的评论,在 DialogFragment 之前。希望对您有所帮助。
//=============================================================================
// Note re. handling of application kill, screen rotation and other state
// change events:
//
// Android will re-execute the onCreate() method for such events.
// Actually, the whole object gets re-created even for a screen rotation!
// If you put a static counter in the constructor, you will see that the
// constructor gets re-executed and all the non-static variables get scrapped
// and re-created. The saving grace is that the rotation or other such events
// do not immediately interrupt when you are in the middle of executing a
// method, but rather it gets queued to be handled when its turn comes (or so
// I hope, else there would have chaos).
// Thus data consistency is not threatened and we can plan to recover from
// such situations gracefully.
//
// The only data that is safe is static class data, or you can - or rather
// should
// - save data as Android advises, by means of
// onRetainNonConfigurationInstance() and
// getLastNonConfigurationInstance()
// (deprecated in API 13 and replaced by
// setRetainInstance(boolean)).
// Note that to save data across complete application restart from a cold
// kill you would need to use:
// onSaveInstanceState() and
// onRestoreInstanceState().
// See
// http://developer.android.com/guide/topics/resources/runtime-changes.html ).
//
// Using statics is probably OK if you are feeling a bit lazy.
// It will probably take care of the state changes, but not of the complete
// kill, of course.
//
// If doing it the proper way, however, we use a clear and simple contract
// with the OS:
//
// 1. We need to save/restore our data before/after a state change or being
// suspended. We do this using onRetainNonConfigurationInstance(),
// getLastNonConfigurationInstance() for state changes - or equivalent
// dialog fragment functionality - and using onSaveInstanceState() and
// onRestoreInstanceState() for application being suspended.
//
// 2. We also need to ensure that all onCreateDialog() and
// onPrepareDialog() methods (or their equivalents, if using the dialog
// fragment API) can be meaningfully executed on the application being
// re-constituted after a state change or after being suspended and
// re-activated. The OS will execute onCreateDialog() always on
// application re-activation, and will execute onPrepareDialog() if the
// dialog was opened at the time the state change or application suspension
// took place (or if it was opened at any time in the past - see below!)
//
// 3. Therefore all data that is required for re-constituting dialogs
// (for onCreateDialog() and onPrepareDialog() if this model is used in
// preference to dialog fragment), must be available all the time and must
// be saved in onRetainNonConfigurationInstance() and in
// onSaveInstanceState().
//
// 4. It also means that we cannot re-use or clean any variables whose
// function Is to 'deliver' information to e.g. onPrepareDialog(). If
// these variables are re-initialized or otherwise overwritten after the
// dialog has been displayed, they will not be available when the OS
// attempts to re-run these methods to re-constitute the dialog!
//
// WARNING:
// Remember not to try to prevent the re-creation of these dialogs or
// otherwise hand onto those dialog instances (e.g. by means of static
// variables), because they are likely to reference your screen GUI and if
// you use the old (eg. pre-rotation) instances, they will try to reference
// non-existing variables from the old instance of the application, and things
// might get funny and actually crash.
//
// IMPORTANT:
// Also note that during such re-creations of the screen, user input fields
// (fields that are user-writable) on the screen will NOT be overwritten, even
// if we try to overwrite them. This is good, because it means that if we
// preserve our read-only data over the rotation, the system will preserve
// whatever the user might have typed in.
//
// NOTE:
// Additional note re. onPrepareDialog()
// (This actually might be a bug in Android)
//
// It seems the Android will call onPrepareDialog() on screen rotation, even if
// the dialog is not currently displayed. Perhaps it will also be called at
// other times. It does not seem to be called on normal app startup or on app
// re-creation after it is suspended, but best to be safe and assume that the
// method will be generally called immediately after onCreateDialog() even if
// the dialog is not active (displayed).
//
// Therefore:
// - All data that the onPrepareDialog() needs must always be provided or
// suitable dummy substitutes must be given or the method should quietly exit
// early if such data is not found.
// - The dialog must not try to do any actions that affect the main
// application data, unless the data we have for it is real and we are sure
// that the dialog is really going to be displayed: Such actions are perhaps
// not common but one could conceivably put such actions in onPrepareDialog()
// (in places other than listeners, where such actions are common place), but
// if we use dummy data or exit early, such actions will obviously be
// nonsensical.
//
// However, the whole scheme of using onCreateDialog/onPrepareDialog has been
// deprecated and therefore will not be fixed even if this thing here
// is an error.
//=============================================================================
关于Android 不按顺序调用方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11926633/
我正在创建一个有效的突变,但我不确定它是否按照我认为的方式工作。但是,我想知道执行顺序是什么? 异步 从上到下同步 同步随机顺序 其他 我想确保在执行插入/更新插入之前从表中删除某些项目。使用以下突变
如何更改规则中的前提顺序? 例如,在伊莎贝尔的自然演绎规则中: mp: ?P ⟶ ?Q ⟹ ?P ⟹ ?Q 我们可以将顺序更改为: ?P ⟹ ?P ⟶ ?Q ⟹ ?Q 我可以用 rev_mp或者定义一
关闭。这个问题需要details or clarity .它目前不接受答案。 想改善这个问题吗?通过 editing this post 添加详细信息并澄清问题. 8年前关闭。 Improve thi
我正在使用 Hibernate 3.2,并使用标准来构建查询。我想为多对一关联添加和“排序”,但我不知道如何做到这一点。 Hibernate 查询最终看起来像这样,我猜: select t1.a, t
我正在开发一个项目,但无法让我的 javascript 按顺序工作。我知道 javascript 可以并行执行任务,因此当您向不响应的服务器发出请求时,它不会被卡住。这有它的优点和缺点。就我而言,这是
在下面的代码中,我认为f1 > f2 > f3是调用顺序,但是仅f1被调用。如何获得依次调用的3个函数? 我已经将以下内容添加到main函数中,它可以按预期工作,但是我想知道是否还有其他确定的方法可以
我有一个如下所示的对象数组: [{ "id": 1, "Size": 90, "Maturity": 24, }, { "id": 2, "S
这是征求意见和要求的请求。我是Docker的新手。 我想要一个用于Python项目的生产和开发容器(可能也进行单元测试)。我的搜索指向多阶段Dockerfile(以及运行它们的多个docker-com
我想知道解决以下问题的有效方法是什么: 假设我在组 1 中有三个字符,在组 2 中有两个字符: group_1 = c("X", "Y", "Z") group_2 = c("A", "B") 显然,
在 Cordova 网站上,您可以看到一长串按字母顺序排列的钩子(Hook)列表,但它们触发和执行的正确顺序是什么? 我正在尝试在构建/编译之前将 cordova.js 脚本添加到 index.htm
我想知道解决以下问题的有效方法是什么: 假设我在组 1 中有三个字符,在组 2 中有两个字符: group_1 = c("X", "Y", "Z") group_2 = c("A", "B") 显然,
这个问题已经有答案了: 奥 git _a (2 个回答) 已关闭 9 年前。 这是我的一个练习的代码, public class RockTest { public static void main(
我使用 HashMap 来存储一些数据,但每当新数据保存到 HashMap 或旧数据移出 HashMap 时,我都需要将其保持升序。但是hashmap本身不支持顺序,我可以使用什么数据结构来支持顺序?
我想创建一个序列,当星期几与函数参数中的日期相同时,它会返回所有年份的结果(例如:自开始日期起,2 月 12 日为星期日的所有年份)。 let myDate (dw:System.DayOfWeek)
我有一个包含许多元素的 Xelement。 我有以下代码来对它们进行排序: var calculation = from y in x.Elements("row")
假设我有: 在 javacript 文件中,我为类按钮和 ID 名称定义了点击操作,例如: $("#name").click(function(event){ alert("hi"); }) $
我有一个包含 2 个 subview 的 View - collectionView 和自定义 View 。我想设置一个操作在布置 2 个 View 后运行,但layoutSubViews 运行了两次
关闭。这个问题需要更多 focused .它目前不接受答案。 想改进这个问题?更新问题,使其仅关注一个问题 editing this post . 2年前关闭。 Improve this questi
我想知道 C++ 中是否有内置方法来比较两个双向迭代器的顺序。例如,我有一个 Sum 函数来计算同一列表中 2 个迭代器之间的总和: double Sum(std::list::const_itera
在 MySQL 中,这两个查询之间有区别吗? SELECT * FROM .... ORDER BY Created,Id DESC 和 SELECT * FROM .... ORDER BY Cre
我是一名优秀的程序员,十分优秀!