summaryrefslogtreecommitdiff
path: root/src/pw/cloudef/rpg/Button.java
blob: 5d444a48eaab5014d3023509285d40e80a949b8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package pw.cloudef.rpg;
import com.andretietz.android.controller.InputView;
import android.annotation.TargetApi;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.drawable.Drawable;
import android.os.Build;
import android.support.v7.content.res.AppCompatResources;
import android.util.AttributeSet;

public class Button extends InputView {
    private static final int BUTTON_COUNT = 1;
    private Drawable[][] drawables = new Drawable[BUTTON_COUNT][2];
    private int[][] resources = new int[BUTTON_COUNT][2];

    public Button(Context context) {
        super(context);
    }

    public Button(Context context, AttributeSet attrs) {
        super(context, attrs);
        init(context, attrs);
    }

    public Button(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init(context, attrs);
    }

    @TargetApi(Build.VERSION_CODES.LOLLIPOP)
    public Button(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
        super(context, attrs, defStyleAttr, defStyleRes);
        init(context, attrs);
    }

    protected void init(Context context, AttributeSet attrs) {
        TypedArray a = context.getTheme().obtainStyledAttributes(attrs, R.styleable.ActionView, 0, R.style.default_actionview);
        super.init(context, attrs, R.style.default_actionview);
        try {
            resources[0][0] = a.getResourceId(R.styleable.ActionView_button1_enabled, R.drawable.action_usual);
            resources[0][1] = a.getResourceId(R.styleable.ActionView_button1_pressed, R.drawable.action_pressed);
        } finally {
            a.recycle();
        }
    }

    @Override
    protected Drawable getStateDrawable(int buttonIndex, ButtonState state) {
        if (null == drawables[buttonIndex][state.ordinal()]) {
            drawables[buttonIndex][state.ordinal()] = AppCompatResources
                    .getDrawable(getContext(), resources[buttonIndex][state.ordinal()]);
        }
        return drawables[buttonIndex][state.ordinal()];
    }

    @Override
    protected int getButtonCount() {
        return BUTTON_COUNT;
    }
}