I want to add this to my user interface, i'm new to Android, so please be kind with the terminology :):
How do I make sections for the "SearchBox" and the "Btns"?
Thank you.
I want to add this to my user interface, i'm new to Android, so please be kind with the terminology :):
How do I make sections for the "SearchBox" and the "Btns"?
Thank you.
Since you're new to Android, the best way to learn it is to look at documentation and their examples. For your simple purpose, I would take a look at this LinearLayout
document.
In your case, the two different Views you need is EditText
for the search bar and Button
for, of course, the buttons. It may be helpful in your case to use the android:layout_alignParentTop="true"
and android:layout_alignParentBottom="true"
tags for the "bars". The row of buttons should be in their own LinearLayout
which you can orient in a horizontal direction, then put it inside the LinearLayout
.