DEV Community

Discussion on: Brag Post

Collapse
 
chrisachard profile image
Chris Achard

What's it written in?

Collapse
 
fultonbrowne profile image
Fulton Browne

Just java and android layout XML

Thread Thread
 
chrisachard profile image
Chris Achard

Ah, cool! (I write React Native, so I don't know much about native dev with android layout XML :) )

Thread Thread
 
fultonbrowne profile image
Fulton Browne

Some people hate it I really dont mind it though

<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context=".about"
    tools:showIn="@layout/activity_about">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="@dimen/text_margin"
        android:text="@string/large_text" />

</androidx.core.widget.NestedScrollView>
Thread Thread
 
chrisachard profile image
Chris Achard

heh; I could see how that could get difficult to write or figure out what is going on :) but I could also see how you like it. Thanks for showing!

Thread Thread
 
fleepgeek profile image
Emmanuel Okiche

All hail Flutter!!!

Thread Thread
 
fultonbrowne profile image
Fulton Browne

Love it too.

Thread Thread
 
fultonbrowne profile image
Fulton Browne

Yah and thats my shortest one the one you see in the picture is here:
github.com/FultonBrowne/Ara-androi...