Posts by Paulo Mendonça • 231 points
3 posts
-
3
votes2
answers5006
viewsA: How to put a row to separate items from a menu?
Try this between the items: <View android:layout_width="fill_parent" android:layout_height="1dp" android:background="@color/dark_gray2" android:focusable="false" />…
androidanswered Paulo Mendonça 231 -
2
votes3
answers5714
viewsA: How to make Jquery datepicker accept only months and year?
I know it escapes a little of your question... but I use following plugin: https://bootstrap-datepicker.readthedocs.org/en/latest/options.html#maxviewmode See if that’s what you need. I have nothing…
-
8
votes2
answers1718
viewsA: How to place two Ivs next to a container?
I believe the answer to your question is the use of 'Fluid containers', that is, containers that will occupy 100% of the available width in the layout. <div class="container-fluid"> <div…