Skip to content

Instantly share code, notes, and snippets.

@andrey-shikhov
Created February 10, 2017 17:42
Show Gist options
  • Save andrey-shikhov/f704f9f3d1417b1fc4559aec90eb93dc to your computer and use it in GitHub Desktop.
Save andrey-shikhov/f704f9f3d1417b1fc4559aec90eb93dc to your computer and use it in GitHub Desktop.
<com.google.android.flexbox.FlexboxLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:flexDirection="row"
android:background="#0c0">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button1"
/>
<View android:layout_width="20dp"
android:layout_height="match_parent"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button2"
/>
</com.google.android.flexbox.FlexboxLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment