You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You need to add method to interface ILoadingLayout like setHeaderColor(int color) and then implement it in the abstract class LoadingLayout.java. F.e.
public void setHeaderTextColor( int color ){
if (mHeaderText != null ) {
mHeaderText.setTextColor(color);
}
}
Hello Using this way i am change string text of pull to refersh
PullToRefreshScrollView mPullRefreshScrollView;
mPullRefreshScrollView = (PullToRefreshScrollView)findViewById(R.id.pull_refresh_scrollview);
vRefresh = mPullRefreshScrollView.getLoadingLayoutProxy();
vRefresh.setPullLabel(getResources().getString(R.string.pull_to_refresh_pull_label_text));
vRefresh.setRefreshingLabel(getResources().getString(R.string.pull_to_refresh_refreshing_label_text));
vRefresh.setReleaseLabel(getResources().getString(R.string.pull_to_refresh_release_label_text));
but when i try to change text color using this
View rView,rView1;
rView = mPullRefreshScrollView.getRefreshableView();
rView1 = mPullRefreshScrollView.getRefreshableView();
TextView tViewMainText = (TextView)rView.findViewById(R.id.pull_to_refresh_text);
tViewMainText.setTextColor(Color.BLACK);
TextView tViewSubText = (TextView)rView1.findViewById(R.id.pull_to_refresh_sub_text);
tViewSubText.setTextColor(Color.BLACK);
only change color of pull_to_refresh_text but not change color of (sub text)pull_to_refresh_sub_text how to change color of sub text.
Thanks
sahir saiyed
The text was updated successfully, but these errors were encountered: