|
@@ -143,7 +143,7 @@ public class AppointmentCourseActivity extends BaseMVPActivity<ActivityAppointme
|
|
|
public void onTabSelected(TabLayout.Tab tab) {
|
|
|
if (tab != null && tab.getCustomView() != null) {
|
|
|
View customView = tab.getCustomView();
|
|
|
- TextView tv_text = customView.findViewById(com.cooleshow.chatmodule.R.id.tv_text);
|
|
|
+ TextView tv_text = customView.findViewById(R.id.tv_text);
|
|
|
tv_text.setTextSize(16);
|
|
|
tv_text.setTextColor(getResources().getColor(com.cooleshow.base.R.color.color_131415));
|
|
|
tv_text.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD));
|
|
@@ -154,7 +154,7 @@ public class AppointmentCourseActivity extends BaseMVPActivity<ActivityAppointme
|
|
|
public void onTabUnselected(TabLayout.Tab tab) {
|
|
|
if (tab != null && tab.getCustomView() != null) {
|
|
|
View customView = tab.getCustomView();
|
|
|
- TextView tv_text = customView.findViewById(com.cooleshow.chatmodule.R.id.tv_text);
|
|
|
+ TextView tv_text = customView.findViewById(R.id.tv_text);
|
|
|
tv_text.setTextSize(16);
|
|
|
tv_text.setTextColor(getResources().getColor(com.cooleshow.base.R.color.color_80000000));
|
|
|
tv_text.setTypeface(Typeface.defaultFromStyle(Typeface.NORMAL));
|