Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I want to use the chipped bottom navigation by https://github.com/ismaeldivita/chip-navigation-bar, But it is done in Kotlin. I want to us it in java. How can i use it? What code should I implement.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
299 views
Welcome To Ask or Share your Answers For Others

1 Answer

Please check Calling Kotlin from Java official article. Actually each Kotlin construction can be unwrapped to Java (except inline function features and couple other).

Actually the coding is the same: add dependency into the project (both Kotlin and Java uses jar files), call methods, etc.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...