Displaying item on specific listview item only?

I think you may have a misunderstanding of how Adapter.getView() works its meant to create or reuse layouts when rendering the ListView it also needs to be fast so conditional manipulation in this method is discouraged. Although ListView.getChildAt() may work it does not effectively use the API. Your adapter will have a setViewBinder() unless you're using an ArrayAdapter (if so I suggest using SimpleAdapter because of the additional features).

Use your ViewBinder implementation to switch the visibility of the button.

I think you may have a misunderstanding of how Adapter.getView() works its meant to create or reuse layouts when rendering the ListView it also needs to be fast so conditional manipulation in this method is discouraged. Although ListView.getChildAt() may work it does not effectively use the API. Your adapter will have a setViewBinder() unless you're using an ArrayAdapter (if so I suggest using SimpleAdapter because of the additional features).

Use your ViewBinder implementation to switch the visibility of the button. If you'd prefer to continue to use ArrayAdapter use ListView. GetChildAt(int) to findViewById(R.id.

Your_button).setVisibility(). If this is what you already tried and its setting all the buttons visible then please post the related code.

Thanks, I will have to try to see if I can get the code back to the way I did it previously and post the code up if I can. Thanks. – footprint.

Aug 3 at 23:12.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions