Android Open Source - Netball Game Adapter






From Project

Back to project page Netball.

License

The source code is released under:

GNU General Public License

If you think the Android project Netball 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

package com.prisch.views;
//www  .  j  ava  2  s . c  om
import android.content.Context;
import android.database.Cursor;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.CursorAdapter;
import android.widget.TextView;
import com.prisch.R;
import com.prisch.model.Game;
import com.prisch.util.DateUtils;

import java.util.Date;

public class GameAdapter extends CursorAdapter {

    private static final int LAYOUT_ID = R.layout.list_games;

    // ===== Constructor =====

    public GameAdapter(Context context, Cursor cursor) {
        super(context, cursor, FLAG_REGISTER_CONTENT_OBSERVER);
    }

    // ===== Adapter Operations =====

    @Override
    public View newView(Context context, Cursor cursor, ViewGroup parent) {
        LayoutInflater layoutInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        return layoutInflater.inflate(LAYOUT_ID, parent, false);
    }

    @Override
    public void bindView(View view, Context context, Cursor cursor) {
        TextView nameTextView = (TextView)view.findViewById(R.id.text_gameName);
        nameTextView.setText(cursor.getString(cursor.getColumnIndex(Game.NAME)));

        TextView dateTextView = (TextView)view.findViewById(R.id.text_gameDate);
        dateTextView.setText(DateUtils.formatDate(new Date(cursor.getLong(cursor.getColumnIndex(Game.DATE)))));

        TextView resultTextView = (TextView)view.findViewById(R.id.text_gameResult);

        long teamScore = cursor.getLong(cursor.getColumnIndex(Game.TEAM_SCORE));
        long opponentScore = cursor.getLong(cursor.getColumnIndex(Game.OPPONENT_SCORE));

        StringBuilder resultBuilder = new StringBuilder();
        if (cursor.getLong(cursor.getColumnIndex(Game.ACTIVE)) > 0) {
            resultBuilder.append("IN PROGRESS");
            resultTextView.setTextColor(context.getResources().getColor(android.R.color.holo_blue_bright));
        } else if (teamScore > opponentScore) {
            resultBuilder.append("WON");
            resultTextView.setTextColor(context.getResources().getColor(android.R.color.holo_green_light));
        } else if (teamScore < opponentScore) {
            resultBuilder.append("LOST");
            resultTextView.setTextColor(context.getResources().getColor(android.R.color.holo_red_light));
        } else {
            resultBuilder.append("DREW");
            resultTextView.setTextColor(context.getResources().getColor(android.R.color.holo_orange_light));
        }
        resultBuilder.append(" " + teamScore + " - " + opponentScore);

        resultTextView.setText(resultBuilder.toString());
    }
}




Java Source Code List

com.prisch.activities.ActionsActivity.java
com.prisch.activities.BaseTeamActivity.java
com.prisch.activities.DashboardActivity.java
com.prisch.activities.GameStatsActivity.java
com.prisch.activities.GamesActivity.java
com.prisch.activities.PlayersActivity.java
com.prisch.activities.PositionsActivity.java
com.prisch.activities.SubstitutionActivity.java
com.prisch.activities.TeamActivity.java
com.prisch.content.DatabaseHelper.java
com.prisch.content.NetballContentProvider.java
com.prisch.controls.ActionButton.java
com.prisch.fragments.PositionStatsFragment.java
com.prisch.loaders.GameStatsLoader.java
com.prisch.model.Action.java
com.prisch.model.GameStats.java
com.prisch.model.Game.java
com.prisch.model.OpponentAction.java
com.prisch.model.OpponentRecord.java
com.prisch.model.PlayerStats.java
com.prisch.model.Player.java
com.prisch.model.Position.java
com.prisch.model.Record.java
com.prisch.model.TeamMember.java
com.prisch.repositories.GameRepository.java
com.prisch.repositories.OpponentRecordRepository.java
com.prisch.repositories.PlayerRepository.java
com.prisch.repositories.RecordRepository.java
com.prisch.repositories.StatsRepository.java
com.prisch.repositories.TeamMemberRepository.java
com.prisch.util.DateUtils.java
com.prisch.views.GameAdapter.java
com.prisch.views.GameStatsAdapter.java
com.prisch.views.PlayerStatsAdapter.java
com.prisch.views.PlayerStatsListItem.java
com.prisch.views.TeamAdapter.java