Android Open Source - Netball Action Button






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.controls;
//  w  ww .j  av  a2  s.c  o m
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.widget.FrameLayout;
import android.widget.ImageView;
import android.widget.TextView;
import com.prisch.R;

public class ActionButton extends FrameLayout {

    private FrameLayout rootLayout;
    private ImageView actionImage;
    private TextView actionText;

    // ===== Constructors =====

    public ActionButton(Context context, AttributeSet attrs) {
        super(context, attrs);

        LayoutInflater layoutInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        layoutInflater.inflate(R.layout.control_actionbutton, this, true);

        rootLayout = (FrameLayout)findViewById(R.id.layout_action);
        actionImage = (ImageView)findViewById(R.id.image_action);
        actionText = (TextView)findViewById(R.id.text_action);

        TypedArray styleAttributes = context.obtainStyledAttributes(attrs, R.styleable.ActionButton);
        if (styleAttributes.hasValue(R.styleable.ActionButton_imageSrc)) {
            setImageSrc(styleAttributes.getDrawable(R.styleable.ActionButton_imageSrc));
        }
        if (styleAttributes.hasValue(R.styleable.ActionButton_text)) {
            setText(styleAttributes.getString(R.styleable.ActionButton_text));
        }
        styleAttributes.recycle();
    }

    // ===== Properties =====

    public void setImageSrc(Drawable imageSrc) {
        actionImage.setImageDrawable(imageSrc);
    }

    public void setText(String text) {
        actionText.setText(text);
    }

    // TODO: Figure out a way to avoid having to overwrite this for all properties
    @Override
    public void setEnabled(boolean enabled) {
        super.setEnabled(enabled);
        rootLayout.setEnabled(enabled);
    }
}




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