Page A
*** currently under construction ***
This is post # 5 of the series dedicated to exploring JavaScript and its building components. In the process of identifying and describing… Source: How JavaScript works: Deep dive into WebSockets and HTTP/2 with SSE + how to pick the right path
in case you have the need to log.i the selected item of an listview this snippet could help: [java] listView.setOnItemClickListener(new AdapterView.OnItemClickListener() { @Override public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) { CheckedTextView checkedTextView = (CheckedTextView) view; String itemClicked = (String) listView.getAdapter().getItem(i); if (checkedTextView.isChecked()) { Log.i("Info :", itemClicked + " is checked");
In diesem Code-Quickie installieren wir die aktuellste Version von Oracle Java 8 auf dem Raspberry Pi. Diese ist aktueller als der Standardpaketliste.
Source: Choosing Java Cryptographic Algorithms Part 1 – Hashing | Java Code Geeks – 2017