How to add a text under the image button in Android?
问题 I want to add text under a image button, which are also clickable, and will be redirected to the same activity as the image button. basically it's like the app list in any android phone, e.g. 回答1: If you have your ImageButton declared in XML, then just put it into a LinearLayout which also contains a TextView and set the onClickListener on the LinearLayout . The structure would be like <LinearLayout ... > <!-- This is the LinearLayout for the xml document --> <!-- Some other layout code here