Android Layout

Responsive Mobile Ready WebPage Using ViewPort Meta Tag Example

When you create an Html web page, of course, you want it to be viewable and user-friendly on all screen-sized devices include the mobile device, PC, and tablets. But before the viewport meta tag is introduced in Html, the mobile devices can not display the web page as well as desktop. This article will introduce …

Responsive Mobile Ready WebPage Using ViewPort Meta Tag Example Read More »

Android Absolute Layout Example

Android AbsoluteLayout is used to layout UI components with absolute x, y-axis coordinate values. For example, if you put a button widget in AbsoluteLayout, you can set the button’s layout_x, and layout_y property value to place the button in a specific location. This example will show you how to use it.

Android Gridlayout Example Programmatically

android.widget.GridLayout is a layout manager used to arrange child views in a grid. You can specify how many columns and rows the grid have with it’s rowCount or columnCount property. You can change the GridLayout object size by specifying it’s layout_margin property. You can even use it’s child view’s layout_rowSpan or layout_columnSpan property to merge …

Android Gridlayout Example Programmatically Read More »

Android Swipe Refresh Layout Example

SwipeRefreshLayout is used to implement drop-down refresh effect in android. It commonly used with ListView, RecyclerView or ScrollView etc. The view object should be scrollable and should be the only child component under it. When you pull down the screen to a certain height from screen top, it will show the refresh indicator. If the …

Android Swipe Refresh Layout Example Read More »