mirror of
https://github.com/oxen-io/session-android.git
synced 2023-12-14 02:53:01 +01:00
72 lines
2.1 KiB
Java
72 lines
2.1 KiB
Java
package org.thoughtcrime.securesms.components;
|
|
|
|
import android.annotation.TargetApi;
|
|
import android.content.Context;
|
|
import android.content.res.TypedArray;
|
|
import android.os.Build.VERSION_CODES;
|
|
import android.support.v4.content.ContextCompat;
|
|
import android.util.AttributeSet;
|
|
import android.view.View;
|
|
import android.widget.ImageView;
|
|
import android.widget.LinearLayout;
|
|
|
|
import network.loki.messenger.R;
|
|
|
|
public class AlertView extends LinearLayout {
|
|
|
|
private static final String TAG = AlertView.class.getSimpleName();
|
|
|
|
private ImageView approvalIndicator;
|
|
private ImageView failedIndicator;
|
|
|
|
public AlertView(Context context) {
|
|
this(context, null);
|
|
}
|
|
|
|
public AlertView(Context context, AttributeSet attrs) {
|
|
super(context, attrs);
|
|
initialize(attrs);
|
|
}
|
|
|
|
@TargetApi(VERSION_CODES.HONEYCOMB)
|
|
public AlertView(final Context context, AttributeSet attrs, int defStyle) {
|
|
super(context, attrs, defStyle);
|
|
initialize(attrs);
|
|
}
|
|
|
|
private void initialize(AttributeSet attrs) {
|
|
inflate(getContext(), R.layout.alert_view, this);
|
|
|
|
approvalIndicator = findViewById(R.id.pending_approval_indicator);
|
|
failedIndicator = findViewById(R.id.sms_failed_indicator);
|
|
|
|
if (attrs != null) {
|
|
TypedArray typedArray = getContext().getTheme().obtainStyledAttributes(attrs, R.styleable.AlertView, 0, 0);
|
|
boolean useSmallIcon = typedArray.getBoolean(R.styleable.AlertView_useSmallIcon, false);
|
|
typedArray.recycle();
|
|
|
|
if (useSmallIcon) {
|
|
int size = getResources().getDimensionPixelOffset(R.dimen.alertview_small_icon_size);
|
|
failedIndicator.getLayoutParams().width = size;
|
|
failedIndicator.getLayoutParams().height = size;
|
|
requestLayout();
|
|
}
|
|
}
|
|
}
|
|
|
|
public void setNone() {
|
|
this.setVisibility(View.GONE);
|
|
}
|
|
|
|
public void setPendingApproval() {
|
|
this.setVisibility(View.VISIBLE);
|
|
approvalIndicator.setVisibility(View.VISIBLE);
|
|
failedIndicator.setVisibility(View.GONE);
|
|
}
|
|
|
|
public void setFailed() {
|
|
this.setVisibility(View.VISIBLE);
|
|
approvalIndicator.setVisibility(View.GONE);
|
|
failedIndicator.setVisibility(View.VISIBLE);
|
|
}
|
|
}
|