O
Size: a a a
O
J
O
O
J
O
O
O
K
NK
J
J
public class ButtonNext extends FrameLayout {
public ButtonNext(Context context) {
this(context, null);
}
public ButtonNext(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
public ButtonNext(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
inflate(context, list_button, this);
findViewById(R.id.button_next_layout).setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
((Activity) getContext()).finish();
}
});
}
J
DK
D
DK
D
DK