change the color of all SwipeRefreshLayouts to match the Tusky theme
This commit is contained in:
parent
9e64bd1307
commit
4e617dccc7
|
@ -155,6 +155,8 @@ class AccountMediaFragment : BaseFragment() {
|
||||||
currentCall?.enqueue(callback)
|
currentCall?.enqueue(callback)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
swipeLayout.setColorSchemeResources(R.color.primary)
|
||||||
|
swipeLayout.setProgressBackgroundColorSchemeColor(ThemeUtils.getColor(context, android.R.attr.colorBackground))
|
||||||
|
|
||||||
recyclerView.addOnScrollListener(object : RecyclerView.OnScrollListener() {
|
recyclerView.addOnScrollListener(object : RecyclerView.OnScrollListener() {
|
||||||
|
|
||||||
|
|
|
@ -37,10 +37,10 @@ import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
|
|
||||||
import com.keylesspalace.tusky.MainActivity;
|
import com.keylesspalace.tusky.MainActivity;
|
||||||
|
import com.keylesspalace.tusky.R;
|
||||||
import com.keylesspalace.tusky.TuskyApplication;
|
import com.keylesspalace.tusky.TuskyApplication;
|
||||||
import com.keylesspalace.tusky.adapter.FooterViewHolder;
|
import com.keylesspalace.tusky.adapter.FooterViewHolder;
|
||||||
import com.keylesspalace.tusky.adapter.NotificationsAdapter;
|
import com.keylesspalace.tusky.adapter.NotificationsAdapter;
|
||||||
import com.keylesspalace.tusky.R;
|
|
||||||
import com.keylesspalace.tusky.db.AccountEntity;
|
import com.keylesspalace.tusky.db.AccountEntity;
|
||||||
import com.keylesspalace.tusky.db.AccountManager;
|
import com.keylesspalace.tusky.db.AccountManager;
|
||||||
import com.keylesspalace.tusky.entity.Attachment;
|
import com.keylesspalace.tusky.entity.Attachment;
|
||||||
|
@ -144,6 +144,8 @@ public class NotificationsFragment extends SFragment implements
|
||||||
// Setup the SwipeRefreshLayout.
|
// Setup the SwipeRefreshLayout.
|
||||||
swipeRefreshLayout = rootView.findViewById(R.id.swipe_refresh_layout);
|
swipeRefreshLayout = rootView.findViewById(R.id.swipe_refresh_layout);
|
||||||
swipeRefreshLayout.setOnRefreshListener(this);
|
swipeRefreshLayout.setOnRefreshListener(this);
|
||||||
|
swipeRefreshLayout.setColorSchemeResources(R.color.primary);
|
||||||
|
swipeRefreshLayout.setProgressBackgroundColorSchemeColor(ThemeUtils.getColor(context, android.R.attr.colorBackground));
|
||||||
// Setup the RecyclerView.
|
// Setup the RecyclerView.
|
||||||
recyclerView = rootView.findViewById(R.id.recycler_view);
|
recyclerView = rootView.findViewById(R.id.recycler_view);
|
||||||
recyclerView.setHasFixedSize(true);
|
recyclerView.setHasFixedSize(true);
|
||||||
|
|
|
@ -169,6 +169,8 @@ public class TimelineFragment extends SFragment implements
|
||||||
Context context = getContext();
|
Context context = getContext();
|
||||||
swipeRefreshLayout = rootView.findViewById(R.id.swipe_refresh_layout);
|
swipeRefreshLayout = rootView.findViewById(R.id.swipe_refresh_layout);
|
||||||
swipeRefreshLayout.setOnRefreshListener(this);
|
swipeRefreshLayout.setOnRefreshListener(this);
|
||||||
|
swipeRefreshLayout.setColorSchemeResources(R.color.primary);
|
||||||
|
swipeRefreshLayout.setProgressBackgroundColorSchemeColor(ThemeUtils.getColor(context, android.R.attr.colorBackground));
|
||||||
// Setup the RecyclerView.
|
// Setup the RecyclerView.
|
||||||
recyclerView = rootView.findViewById(R.id.recycler_view);
|
recyclerView = rootView.findViewById(R.id.recycler_view);
|
||||||
recyclerView.setHasFixedSize(true);
|
recyclerView.setHasFixedSize(true);
|
||||||
|
|
|
@ -96,6 +96,8 @@ public class ViewThreadFragment extends SFragment implements
|
||||||
Context context = getContext();
|
Context context = getContext();
|
||||||
swipeRefreshLayout = rootView.findViewById(R.id.swipe_refresh_layout);
|
swipeRefreshLayout = rootView.findViewById(R.id.swipe_refresh_layout);
|
||||||
swipeRefreshLayout.setOnRefreshListener(this);
|
swipeRefreshLayout.setOnRefreshListener(this);
|
||||||
|
swipeRefreshLayout.setColorSchemeResources(R.color.primary);
|
||||||
|
swipeRefreshLayout.setProgressBackgroundColorSchemeColor(ThemeUtils.getColor(context, android.R.attr.colorBackground));
|
||||||
|
|
||||||
recyclerView = rootView.findViewById(R.id.recycler_view);
|
recyclerView = rootView.findViewById(R.id.recycler_view);
|
||||||
recyclerView.setHasFixedSize(true);
|
recyclerView.setHasFixedSize(true);
|
||||||
|
|
Loading…
Reference in New Issue