/* * Copyright 2012 GitHub Inc. * * 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.github.mobile.ui.repo; import android.view.LayoutInflater; import android.view.View; import android.widget.TextView; import com.github.mobile.R.color; import com.github.mobile.R.id; import com.github.mobile.R.layout; import com.github.mobile.ui.StyledText; import com.github.mobile.util.TypefaceUtils; import org.eclipse.egit.github.core.Repository; import org.eclipse.egit.github.core.User; /** * Adapter for a list of repositories */ public class UserRepositoryListAdapter extends RepositoryListAdapter<Repository> { private final String login; private int descriptionColor; /** * Create list adapter for repositories * * @param inflater * @param elements * @param user */ public UserRepositoryListAdapter(LayoutInflater inflater, Repository[] elements, User user) { super(layout.user_repo_item, inflater, elements); login = user.getLogin(); } @Override public long getItemId(final int position) { return getItem(position).getId(); } @Override protected View initialize(View view) { view = super.initialize(view); TypefaceUtils.setOcticons(textView(view, 0), (TextView) view.findViewById(id.tv_forks_icon), (TextView) view.findViewById(id.tv_watchers_icon)); descriptionColor = view.getResources().getColor(color.text_description); return view; } @Override protected int[] getChildViewIds() { return new int[] { id.tv_repo_icon, id.tv_repo_description, id.tv_language, id.tv_watchers, id.tv_forks, id.tv_repo_name }; } @Override protected void update(int position, Repository repository) { StyledText name = new StyledText(); if (!login.equals(repository.getOwner().getLogin())) name.foreground(repository.getOwner().getLogin(), descriptionColor) .foreground('/', descriptionColor); name.bold(repository.getName()); setText(5, name); updateDetails(repository.getDescription(), repository.getLanguage(), repository.getWatchers(), repository.getForks(), repository.isPrivate(), repository.isFork(), repository.getMirrorUrl()); } }