views:

35

answers:

1

Hai All, How to create Customize Layout in Android ? My plbm is i m dispalying Images in grid view, when the user reached the last image in the gird view , It must display " click here to View More Images" Message.

A: 

You can do it in a simple way. No need to customize layout. You can do it in this way:

OnclickListener: if(position == adapter.getCount - 1){ tellMessage(); }

Henry Sou