Best way to implement this custom layout - android

I need to do this in my app:
and so I need a way to put the ImageView, the TextView and the EditText.
What's the best way to do it? I thought to put all into a TextView but the size of this is too small and so it's not a good idea.
I think also to use RelativeLayout but there are also other ways to do it?
Thanks

Everything is in horizontal, so I suggest to use LinearLayout. Inside it:
TextView with drawableLeft
EditText
TextView

As you see all views are horizontal so i suggest Linear Layout
and make orientation horizontal.
and use
1.use shape
2.text view
3.textview

Related

how can i add box layout both in horizontally and vertical like gridview in android

I want add dynamic layout in android.this layout should be in horizontally and vertically.like
like gridview
I had the same requirement and I Solved my problem by using FlowLayout. Sample code and references are available on github Its simple to use.
Hope this'll help you.
You can Use Linerlayout with property android:orientation="vertical" for verical button and android:orientation="horizontal" for horizontal buttons.
Also use weight property of linerLayout
use nested Linear Layouts and change the orientation property .Check this library it might be helpful
https://github.com/Comcast/FreeFlow

How to add TextView at below in a RelativeLayout when there is no space at right?

I've seen many of questions for how to add TextView in a RelativeLayout programatically, but everybody adding it in LinearLayout with orientation vertical. Can any one suggest me or give me a link that how to add multiple TextView in RelativeLayout at right until it has space and then change the line.
I want a layout like this..
May be this works for you !
You can customize chips-edittext-library for your need. Customizing by setting background to transparent, and editable to false.
-> Or you can use any other library which is used for displaying emoticon in EditText and customize it according to your need. Like android-emoticon-edittext-spike
You can use the Flow Layout library that manages the view arrangement itself.
When there is no space left the added View is moved to the next line

Layout design in android having TextView with image

how can i mange Textview in layout.? please help me..
how can i set textview and border then again textview.
Just create a horizontal LinearLayout, and add an ImageView, a TextView, a View with width 2dp and height match_parent, and a TextView as children.
Either repeat that for every row, or use the recommended approach of using a ListView with the above mentioned layout as rows.
I'd use two compound TextViews: Just create a horizontal LinearLayout, and add a TextView with drawableLeft="#drawable/icon_location" and another one with drawableLeft="#drawable/line_vertical" as children.
For both, a drawablePadding="8dp" or whatever you like best

Android seekbar not showing

Folks, I have the following layout: http://dpaste.com/hold/755261/
It has two seekbar widgets. Both are not showing. If I move them to the root linearlayout, they appear, otherwise not. I need them to be inside the first linearlayout. Anyone could help me how to achieve that?
It looks like you need to put the following in your third LinearLayout:
android:layout_weight="1"
Change the second LinearLayout height to wrap_content. If the content doesn't fit on the screen, then maybe you have to use a ScrollView.

Android button dynamically placed on button

I wanted to know if there is a way to place a button on the bottom of the screen, no matter what size screen the device has. I basically want the button to have a gravity="bottom", not just its text. I have been trying to do this, and I cannot find a way to do it. any suggestions?
What layout is the button in? Using a relative layout, you can set the button to align_parent_bottom.
use a RelativeLayout with layout_height="fill_parent" then set the button's layout_alignParentBottom value to true in the XML file
Never mind, I created a child LinearLayout only for and I put
android:gravity="bottom"
in the child and it worked :-)
Try using android:layout_gravity="bottom" on the Button :)

Categories

Resources