Android Open Source - fruit.thememanager Theme Show Adapter






From Project

Back to project page fruit.thememanager.

License

The source code is released under:

Apache License

If you think the Android project fruit.thememanager listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C) 2008 The Android Open Source Project
 *//w w w  .j  a  va2 s.  co  m
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.fruit.thememanager;

import android.content.Context;
import android.graphics.drawable.Drawable;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ImageView;
import android.widget.TextView;

import java.util.ArrayList;

import com.fruit.thememanager.helper.ThemeInfo;

/**
 * GridView adapter to show the list of applications and shortcuts
 */
public class ThemeShowAdapter extends ArrayAdapter<ThemeInfo> {

    private final LayoutInflater mInflater;
    private final ThemeManager mThemeMgr;
    private final Context mContext;
    private final String mThumbImgName;

    public ThemeShowAdapter(Context context, ArrayList<ThemeInfo> apps, String thumbImgName) {
        super(context, 0, apps);
        mInflater = LayoutInflater.from(context);
        mThemeMgr = ThemeManager.getInstance(context);
        mContext = context;
        mThumbImgName = new String(thumbImgName);
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        final ThemeInfo info = getItem(position);

        if (convertView == null) {
            convertView = mInflater.inflate(R.layout.theme_list_item, parent, false);
            convertView.setFocusable(false);
        }
        
        TextView themeTitle = (TextView) convertView.findViewById(R.id.theme_item_name);
//        TextView themeAuthor = (TextView) convertView.findViewById(R.id.theme_item_author);
        ImageView themePreview = (ImageView) convertView.findViewById(R.id.theme_item_preview);
        ImageView themeStatus = (ImageView) convertView.findViewById(R.id.theme_item_status);
    
    if(info != null){
      themeTitle.setText(info.mThemeName);
//      themeAuthor.setText(info.mThemeAuthor);
      
      Drawable prevDrawable = mThemeMgr.loadDrawable(info, mThumbImgName);
      if(prevDrawable != null){
        themePreview.setImageDrawable(prevDrawable);
      }
      
      if(info.mIsCurrent){
        themeStatus.setVisibility(View.VISIBLE);
      }else{
        themeStatus.setVisibility(View.GONE);
      }
    }


        return convertView;
    }
}




Java Source Code List

com.fruit.thememanager.ListItemThemeElement.java
com.fruit.thememanager.ListItem.java
com.fruit.thememanager.ThemeApplyActivity.java
com.fruit.thememanager.ThemeCustomActivity.java
com.fruit.thememanager.ThemeCustomOptActivity.java
com.fruit.thememanager.ThemeManager.java
com.fruit.thememanager.ThemeProvider.java
com.fruit.thememanager.ThemeSettingActivity.java
com.fruit.thememanager.ThemeShowAdapter.java
com.fruit.thememanager.ThemeShowImageAdapter.java
com.fruit.thememanager.ThemeUtils.java
com.fruit.thememanager.helper.ThemeInfoCustomLoader.java
com.fruit.thememanager.helper.ThemeInfoDefaultLoader.java
com.fruit.thememanager.helper.ThemeInfoLoader.java
com.fruit.thememanager.helper.ThemeInfo.java
com.fruit.thememanager.helper.ThemeLoaderHelper.java
com.fruit.thememanager.helper.ThemeResourceCustomLoader.java
com.fruit.thememanager.helper.ThemeResourceDefaultLoader.java
com.fruit.thememanager.helper.ThemeResourceLoader.java
com.fruit.thememanager.helper.ThemeResources.java