aboutsummaryrefslogtreecommitdiff
path: root/src/org/happysanta/gd/Menu/Views/MenuRelativeLayout.java
blob: 3e5e0d25111d4b8f45ac4fa96c6fa0ff6f98dd8f (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
package org.happysanta.gd.Menu.Views;

import android.content.Context;
import android.view.View;
import android.widget.RelativeLayout;

import static org.happysanta.gd.Helpers.runOnUiThread;

public class MenuRelativeLayout extends RelativeLayout {

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

	@Override
	public void removeAllViews() {
		runOnUiThread(new Runnable() {
			@Override
			public void run() {
				MenuRelativeLayout.super.removeAllViews();
			}
		});
	}

	@Override
	public void setVisibility(final int visibility) {
		runOnUiThread(new Runnable() {
			@Override
			public void run() {
				MenuRelativeLayout.super.setVisibility(visibility);
			}
		});
	}

	@Override
	public void addView(final View view) {
		runOnUiThread(new Runnable() {
			@Override
			public void run() {
				MenuRelativeLayout.super.addView(view);
			}
		});
	}

	@Override
	public void setPadding(final int left, final int top, final int right, final int bottom) {
		runOnUiThread(new Runnable() {
			@Override
			public void run() {
				MenuRelativeLayout.super.setPadding(left, top, right, bottom);
			}
		});
	}

}