几天以来,我一直尝试着做本教程。 我已经安装了Jetty并使用java -jar start.jar启动。
但是有问题,我无法在http://localhost:8080/webdemo上运行。
当我们执行以下命令bash gradlew appRun时,结果就是:
func collectionView(_ collectionView: UICollectionView, moveItemAt sourceIndexPath: IndexPath, to destinationIndexPath: IndexPath) {
let image = arrayOfImages[sourceIndexPath.row]
arrayOfImages.remove(at: sourceIndexPath.row)
arrayOfImages.insert(image, at: destinationIndexPath.row)
collectionView.reloadData()
}
但这是我的结果:
final ImageButton imageButton ;
final PopupMenu dropDownMenu = new PopupMenu(getContext(), imageButton);
final Menu menu = dropDownMenu.getMenu();
menu.add(0, 0, 0, "Item 1");
menu.add(0, 1, 0, "Item 2");
dropDownMenu.getMenuInflater().inflate(R.menu.some_menu, menu);
dropDownMenu.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
@Override
public boolean onMenuItemClick(MenuItem item) {
switch (item.getItemId()) {
case 0:
return true;
case 1:
return true;
}
return false;
}
});
imageButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
dropDownMenu.show();
}
});
imageButton.setOnTouchListener(dropDownMenu.getDragToOpenListener());
非常感谢您阻止我的问题
答案 0 :(得分:1)
该指南已过时,对不起。替换块:
302 636 727 121 85 612
33190.413 79238.898 111401.546 16792.180 4601.363 17698.895
使用
plugins {
id 'war'
id 'org.akhikhl.gretty' version '1.4.2'
}
我将安排指南进行更新。
警告并不严重,它是主要版本之间JVM更改的结果。您可以在the Gradle issue tracker中了解更多信息。