Guest User

Untitled

a guest
Jul 18th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. Drive:******Android-sdksamplesandroid-<apilevel>ApiDemossrccomexampleandroidapisviewExpandableList1.java
  2.  
  3. TextView desc = (TextView) v.findViewById(R.id.editText1);
  4. ImageView icon = (ImageView) v.findViewById(R.id.listIcon);
  5. if (desc.getVisibility() == View.VISIBLE) {
  6. icon.getLayoutParams().height = heightIcon;
  7. desc.setVisibility(View.GONE);
  8. } else {
  9. icon.getLayoutParams().height = LayoutParams.FILL_PARENT;
  10. desc.setVisibility(View.VISIBLE);
  11. }
Add Comment
Please, Sign In to add comment