Search in sources :

Example 1 with AsyncListView

use of org.lucasr.smoothie.AsyncListView in project Talon-for-Twitter by klinker24.

the class RetweetActivity method onCreate.

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    landscape = getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE;
    context = this;
    sharedPrefs = context.getSharedPreferences("com.klinker.android.twitter_world_preferences", 0);
    settings = AppSettings.getInstance(this);
    requestWindowFeature(Window.FEATURE_ACTION_BAR_OVERLAY);
    setUpTheme();
    setContentView(R.layout.retweets_activity);
    setUpDrawer(3, getResources().getString(R.string.retweets));
    actionBar = getActionBar();
    actionBar.setTitle(getResources().getString(R.string.retweets));
    if (!settings.isTwitterLoggedIn) {
        Intent login = new Intent(context, LoginActivity.class);
        startActivity(login);
        finish();
    }
    listView = (AsyncListView) findViewById(R.id.listView);
    BitmapLruCache cache = App.getInstance(context).getBitmapCache();
    ArrayListLoader loader = new ArrayListLoader(cache, context);
    ItemManager.Builder builder = new ItemManager.Builder(loader);
    builder.setPreloadItemsEnabled(true).setPreloadItemsCount(50);
    builder.setThreadPoolSize(4);
    listView.setItemManager(builder.build());
    View viewHeader = getLayoutInflater().inflate(R.layout.ab_header, null);
    listView.addHeaderView(viewHeader, null, false);
    if (DrawerActivity.translucent) {
        if (Utils.hasNavBar(context)) {
            View footer = new View(context);
            footer.setOnClickListener(null);
            footer.setOnLongClickListener(null);
            ListView.LayoutParams params = new ListView.LayoutParams(ListView.LayoutParams.MATCH_PARENT, Utils.getNavBarHeight(context));
            footer.setLayoutParams(params);
            listView.addFooterView(footer);
            listView.setFooterDividersEnabled(false);
        }
        if (!MainActivity.isPopup) {
            View view = new View(context);
            view.setOnClickListener(null);
            view.setOnLongClickListener(null);
            ListView.LayoutParams params2 = new ListView.LayoutParams(ListView.LayoutParams.MATCH_PARENT, Utils.getStatusBarHeight(context));
            view.setLayoutParams(params2);
            listView.addHeaderView(view);
            listView.setFooterDividersEnabled(false);
        }
    }
    final boolean isTablet = getResources().getBoolean(R.bool.isTablet);
    listView.setOnScrollListener(new AbsListView.OnScrollListener() {

        int mLastFirstVisibleItem = 0;

        @Override
        public void onScrollStateChanged(AbsListView absListView, int i) {
        }

        @Override
        public void onScroll(AbsListView absListView, final int firstVisibleItem, int visibleItemCount, int totalItemCount) {
            final int lastItem = firstVisibleItem + visibleItemCount;
            if (lastItem == totalItemCount && canRefresh) {
                getRetweets();
            }
            if (!landscape && !isTablet) {
                // show and hide the action bar
                if (firstVisibleItem != 0) {
                    if (MainActivity.canSwitch) {
                        // used to show and hide the action bar
                        if (firstVisibleItem > mLastFirstVisibleItem) {
                            actionBar.hide();
                        } else if (firstVisibleItem < mLastFirstVisibleItem) {
                            actionBar.show();
                        }
                        mLastFirstVisibleItem = firstVisibleItem;
                    }
                } else {
                    actionBar.show();
                }
            }
            if (MainActivity.translucent && actionBar.isShowing()) {
                showStatusBar();
            } else if (MainActivity.translucent) {
                hideStatusBar();
            }
        }
    });
    getRetweets();
}
Also used : ArrayListLoader(com.klinker.android.twitter.adapters.ArrayListLoader) ItemManager(org.lucasr.smoothie.ItemManager) AbsListView(android.widget.AbsListView) Intent(android.content.Intent) AsyncListView(org.lucasr.smoothie.AsyncListView) View(android.view.View) AbsListView(android.widget.AbsListView) ListView(android.widget.ListView) BitmapLruCache(uk.co.senab.bitmapcache.BitmapLruCache) AsyncListView(org.lucasr.smoothie.AsyncListView) AbsListView(android.widget.AbsListView) ListView(android.widget.ListView)

Example 2 with AsyncListView

use of org.lucasr.smoothie.AsyncListView in project Talon-for-Twitter by klinker24.

the class CategoryFragment method onCreateView.

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    super.onCreateView(inflater, container, savedInstanceState);
    sharedPrefs = context.getSharedPreferences("com.klinker.android.twitter_world_preferences", 0);
    settings = AppSettings.getInstance(context);
    layout = inflater.inflate(R.layout.trends_list_view, null);
    listView = (AsyncListView) layout.findViewById(R.id.listView);
    if (DrawerActivity.translucent) {
        if (Utils.hasNavBar(context)) {
            View footer = new View(context);
            footer.setOnClickListener(null);
            footer.setOnLongClickListener(null);
            ListView.LayoutParams params = new ListView.LayoutParams(ListView.LayoutParams.MATCH_PARENT, Utils.getNavBarHeight(context));
            footer.setLayoutParams(params);
            listView.addFooterView(footer);
            listView.setFooterDividersEnabled(false);
        }
    }
    getSuggestions();
    return layout;
}
Also used : AsyncListView(org.lucasr.smoothie.AsyncListView) ListView(android.widget.ListView) AsyncListView(org.lucasr.smoothie.AsyncListView) View(android.view.View) ListView(android.widget.ListView)

Example 3 with AsyncListView

use of org.lucasr.smoothie.AsyncListView in project Talon-for-Twitter by klinker24.

the class ProfileFragment method onCreateView.

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    super.onCreateView(inflater, container, savedInstanceState);
    mCache = App.getInstance(context).getBitmapCache();
    settings = AppSettings.getInstance(context);
    screenName = getArguments().getString("screen_name");
    isMyProfile = settings.myScreenName.equals(screenName);
    sharedPrefs = context.getSharedPreferences("com.klinker.android.twitter_world_preferences", 0);
    inflater = LayoutInflater.from(context);
    layout = inflater.inflate(R.layout.list_fragment, null);
    LinearLayout spin = (LinearLayout) layout.findViewById(R.id.spinner);
    spin.setVisibility(View.GONE);
    AsyncListView listView = (AsyncListView) layout.findViewById(R.id.listView);
    listView.setVisibility(View.VISIBLE);
    BitmapLruCache cache = App.getInstance(context).getBitmapCache();
    ArrayListLoader loader = new ArrayListLoader(cache, context);
    builder = new ItemManager.Builder(loader);
    builder.setPreloadItemsEnabled(true).setPreloadItemsCount(50);
    builder.setThreadPoolSize(4);
    listView.setItemManager(builder.build());
    View header;
    boolean fromAddon = false;
    if (!settings.addonTheme) {
        header = inflater.inflate(R.layout.user_profile_header, null);
    } else {
        try {
            Context viewContext = null;
            Resources res = context.getPackageManager().getResourcesForApplication(settings.addonThemePackage);
            try {
                viewContext = context.createPackageContext(settings.addonThemePackage, Context.CONTEXT_IGNORE_SECURITY);
            } catch (PackageManager.NameNotFoundException e) {
                e.printStackTrace();
            } catch (Exception e) {
                e.printStackTrace();
            }
            if (res != null && viewContext != null) {
                int id = res.getIdentifier("user_profile_header", "layout", settings.addonThemePackage);
                header = LayoutInflater.from(viewContext).inflate(res.getLayout(id), null);
                fromAddon = true;
            } else {
                header = inflater.inflate(R.layout.user_profile_header, null);
            }
        } catch (Exception e) {
            e.printStackTrace();
            header = inflater.inflate(R.layout.user_profile_header, null);
        }
    }
    listView.addHeaderView(header);
    listView.setAdapter(new TimelineArrayAdapter(context, new ArrayList<Status>(0)));
    followers = new ArrayList<User>();
    following = new ArrayList<User>();
    setUpUI(fromAddon, header, layout);
    return layout;
}
Also used : Context(android.content.Context) User(twitter4j.User) ArrayListLoader(com.klinker.android.twitter.adapters.ArrayListLoader) ItemManager(org.lucasr.smoothie.ItemManager) ArrayList(java.util.ArrayList) ImageView(android.widget.ImageView) AsyncListView(org.lucasr.smoothie.AsyncListView) View(android.view.View) AbsListView(android.widget.AbsListView) TextView(android.widget.TextView) BitmapLruCache(uk.co.senab.bitmapcache.BitmapLruCache) PackageManager(android.content.pm.PackageManager) TimelineArrayAdapter(com.klinker.android.twitter.adapters.TimelineArrayAdapter) Resources(android.content.res.Resources) LinearLayout(android.widget.LinearLayout) AsyncListView(org.lucasr.smoothie.AsyncListView)

Example 4 with AsyncListView

use of org.lucasr.smoothie.AsyncListView in project Talon-for-Twitter by klinker24.

the class ListsActivity method onCreate.

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    context = this;
    sharedPrefs = context.getSharedPreferences("com.klinker.android.twitter_world_preferences", 0);
    settings = AppSettings.getInstance(this);
    requestWindowFeature(Window.FEATURE_ACTION_BAR_OVERLAY);
    setUpTheme();
    setContentView(R.layout.twitter_lists_page);
    setUpDrawer(1, getResources().getString(R.string.lists));
    actionBar = getActionBar();
    actionBar.setTitle(getResources().getString(R.string.lists));
    if (!settings.isTwitterLoggedIn) {
        Intent login = new Intent(context, LoginActivity.class);
        startActivity(login);
        finish();
    }
    listView = (AsyncListView) findViewById(R.id.listView);
    View viewHeader = getLayoutInflater().inflate(R.layout.ab_header, null);
    listView.addHeaderView(viewHeader, null, false);
    listView.setHeaderDividersEnabled(false);
    if (DrawerActivity.translucent) {
        if (Utils.hasNavBar(context)) {
            View footer = new View(context);
            footer.setOnClickListener(null);
            footer.setOnLongClickListener(null);
            ListView.LayoutParams params = new ListView.LayoutParams(ListView.LayoutParams.MATCH_PARENT, Utils.getNavBarHeight(context));
            footer.setLayoutParams(params);
            listView.addFooterView(footer);
            listView.setFooterDividersEnabled(false);
        }
    }
    getLists();
}
Also used : AsyncListView(org.lucasr.smoothie.AsyncListView) ListView(android.widget.ListView) Intent(android.content.Intent) AsyncListView(org.lucasr.smoothie.AsyncListView) View(android.view.View) ListView(android.widget.ListView)

Example 5 with AsyncListView

use of org.lucasr.smoothie.AsyncListView in project Talon-for-Twitter by klinker24.

the class FavoritesActivity method onCreate.

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    landscape = getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE;
    context = this;
    sharedPrefs = context.getSharedPreferences("com.klinker.android.twitter_world_preferences", 0);
    settings = AppSettings.getInstance(this);
    requestWindowFeature(Window.FEATURE_ACTION_BAR_OVERLAY);
    setUpTheme();
    setContentView(R.layout.retweets_activity);
    setUpDrawer(4, getResources().getString(R.string.favorite_tweets));
    actionBar = getActionBar();
    actionBar.setTitle(getResources().getString(R.string.favorite_tweets));
    if (!settings.isTwitterLoggedIn) {
        Intent login = new Intent(context, LoginActivity.class);
        startActivity(login);
        finish();
    }
    listView = (AsyncListView) findViewById(R.id.listView);
    BitmapLruCache cache = App.getInstance(context).getBitmapCache();
    ArrayListLoader loader = new ArrayListLoader(cache, context);
    ItemManager.Builder builder = new ItemManager.Builder(loader);
    builder.setPreloadItemsEnabled(true).setPreloadItemsCount(50);
    builder.setThreadPoolSize(4);
    listView.setItemManager(builder.build());
    View viewHeader = getLayoutInflater().inflate(R.layout.ab_header, null);
    listView.addHeaderView(viewHeader, null, false);
    if (DrawerActivity.translucent) {
        if (Utils.hasNavBar(context)) {
            View footer = new View(context);
            footer.setOnClickListener(null);
            footer.setOnLongClickListener(null);
            ListView.LayoutParams params = new ListView.LayoutParams(ListView.LayoutParams.MATCH_PARENT, Utils.getNavBarHeight(context));
            footer.setLayoutParams(params);
            listView.addFooterView(footer);
            listView.setFooterDividersEnabled(false);
        }
        if (!MainActivity.isPopup) {
            View view = new View(context);
            view.setOnClickListener(null);
            view.setOnLongClickListener(null);
            ListView.LayoutParams params2 = new ListView.LayoutParams(ListView.LayoutParams.MATCH_PARENT, Utils.getStatusBarHeight(context));
            view.setLayoutParams(params2);
            listView.addHeaderView(view);
            listView.setFooterDividersEnabled(false);
        }
    }
    final boolean isTablet = getResources().getBoolean(R.bool.isTablet);
    listView.setOnScrollListener(new AbsListView.OnScrollListener() {

        int mLastFirstVisibleItem = 0;

        @Override
        public void onScrollStateChanged(AbsListView absListView, int i) {
        }

        @Override
        public void onScroll(AbsListView absListView, final int firstVisibleItem, int visibleItemCount, int totalItemCount) {
            final int lastItem = firstVisibleItem + visibleItemCount;
            if (lastItem == totalItemCount && canRefresh) {
                getFavorites();
            }
            // show and hide the action bar
            if (firstVisibleItem != 0) {
                if (MainActivity.canSwitch) {
                    // used to show and hide the action bar
                    if (firstVisibleItem > mLastFirstVisibleItem) {
                        if (!landscape && !isTablet) {
                            actionBar.hide();
                        }
                    } else if (firstVisibleItem < mLastFirstVisibleItem) {
                        if (!landscape && !isTablet) {
                            actionBar.show();
                        }
                        if (translucent) {
                            statusBar.setVisibility(View.VISIBLE);
                        }
                    }
                    mLastFirstVisibleItem = firstVisibleItem;
                }
            } else {
                if (!landscape && !isTablet) {
                    actionBar.show();
                }
            }
            if (MainActivity.translucent && actionBar.isShowing()) {
                showStatusBar();
            } else if (MainActivity.translucent) {
                hideStatusBar();
            }
        }
    });
    getFavorites();
    final LinearLayout spinner = (LinearLayout) findViewById(R.id.list_progress);
    spinner.setVisibility(View.VISIBLE);
}
Also used : ArrayListLoader(com.klinker.android.twitter.adapters.ArrayListLoader) ItemManager(org.lucasr.smoothie.ItemManager) AbsListView(android.widget.AbsListView) Intent(android.content.Intent) AsyncListView(org.lucasr.smoothie.AsyncListView) View(android.view.View) AbsListView(android.widget.AbsListView) ListView(android.widget.ListView) BitmapLruCache(uk.co.senab.bitmapcache.BitmapLruCache) AsyncListView(org.lucasr.smoothie.AsyncListView) AbsListView(android.widget.AbsListView) ListView(android.widget.ListView) LinearLayout(android.widget.LinearLayout)

Aggregations

AsyncListView (org.lucasr.smoothie.AsyncListView)19 View (android.view.View)18 ListView (android.widget.ListView)12 ItemManager (org.lucasr.smoothie.ItemManager)10 BitmapLruCache (uk.co.senab.bitmapcache.BitmapLruCache)10 Intent (android.content.Intent)8 AbsListView (android.widget.AbsListView)8 ArrayListLoader (com.klinker.android.twitter.adapters.ArrayListLoader)8 LinearLayout (android.widget.LinearLayout)4 FullScreenSwipeRefreshLayout (com.klinker.android.twitter.views.swipe_refresh_layout.FullScreenSwipeRefreshLayout)4 ImageView (android.widget.ImageView)3 Resources (android.content.res.Resources)2 Handler (android.os.Handler)2 AdapterView (android.widget.AdapterView)2 TextView (android.widget.TextView)2 CursorListLoader (com.klinker.android.twitter.adapters.CursorListLoader)2 HoloTextView (com.klinker.android.twitter.views.text.HoloTextView)2 Context (android.content.Context)1 PackageManager (android.content.pm.PackageManager)1 Point (android.graphics.Point)1