Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. View v = LayoutInflater.from(this).inflate(R.layout.tab_item_horizontal,null);
  2. tabLayout.getTabAt(0).setCustomView(v);
  3. TextView text_tab_item = (TextView)v.findViewById(R.id.text_tab_item);
  4. ImageView img_tabtxt = (ImageView)v.findViewById(R.id.img_tabtxt);
  5. img_tabtxt.setImageResource(R.drawable.request_tab_white);
  6. text_tab_item.setText("Members");
  7. text_tab_item.setTextColor(getResources().getColor(R.color.white_color));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement