Giter Club home page Giter Club logo

android-java-8-stream-example's Introduction

Android Java 8 Stream API Example

Demo app of using Java 8 features with Retrolambda and Lightweight-Stream-API.

Features:

  • () -> lambda expression

    findViewById(R.id.go).setOnClickListener(v -> {
       final int index = mActionSpinner.getSelectedItemPosition();
       if (index != Spinner.INVALID_POSITION) {
           action(actions[index]);
       }

});



- [Method::references](app/src/main/java/com/annimon/java8streamexample/Word.java#L37)

```java
int cmp = Objects.compare(word, other.word, String::compareToIgnoreCase);
  • Stream.API()

    return Stream.of(lines)
         .map(str -> str.split("\t"))
         .filter(arr -> arr.length == 2)
         .map(arr -> new Word(arr[0], arr[1]))
         .collect(Collectors.toList());
  • switch for "string"

switch (action) { case "filter 1": // Filter one word stream = stream.filter(p -> p.getWord().split(" ").length == 1); break; case "filter 2+": // Filter two and more words stream = stream.filter(p -> p.getWord().split(" ").length >= 2); break; // ... }


- [try(with-resources) {}](app/src/main/java/com/annimon/java8streamexample/Utils.java#L28)

```java
final List<String> lines = new ArrayList<>();
try (final InputStream is = context.getAssets().open("words.txt");
     final InputStreamReader isr = new InputStreamReader(is, "UTF-8");
     final BufferedReader reader = new BufferedReader(isr)) {
    String line;
    while ( (line = reader.readLine()) != null ) {
        lines.add(line);
    }
}
  • Objects (from Java 7)

    @Override
    public boolean equals(Object o) {
        // ...
        final Word other = (Word) o;
        return Objects.equals(translate, other.translate) &&
               Objects.equals(word, other.word);
    }
    
    @Override
    public int hashCode() {
        return Objects.hash(word, translate);
    }
  • try { Exceptional } catch (functional try/catch)

    return Exceptional.of(() -> {
        final InputStream is = context.getAssets().open("words.txt");
        // ... operations which throws Exception ...
        return lines;
    }).ifException(e -> Log.e("Java 8 Example", "Utils.readWords", e))
      .getOrElse(new ArrayList<>());

Links

Demo app: Java8StreamExample.apk

Blog (Russian): Java 8 в Android со Stream API и лямбдами

Retrolambda: https://github.com/orfjackal/retrolambda

Lightweight-Stream-API: https://github.com/aNNiMON/Lightweight-Stream-API

Screenshots

screen_1 screen_2

android-java-8-stream-example's People

Contributors

annimon avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.