aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/widget/StatusIndicator.java
blob: f5b1cf3b67c04dfaf62103c91467cef729c77b22 (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
package org.sufficientlysecure.keychain.ui.widget;


import android.content.Context;
import android.util.AttributeSet;
import android.view.LayoutInflater;

import org.sufficientlysecure.keychain.R;


public class StatusIndicator extends ToolableViewAnimator {

    public StatusIndicator(Context context) {
        super(context);

        LayoutInflater.from(context).inflate(R.layout.status_indicator, this, true);
    }

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

        LayoutInflater.from(context).inflate(R.layout.status_indicator, this, true);
    }

}