(int left, int top)
| 41 | } |
| 42 | |
| 43 | @Override |
| 44 | public Window setWindowPosition(int left, int top) { |
| 45 | assert _onUIThread() : "Should be run on UI thread"; |
| 46 | _nSetWindowPosition(left, top); |
| 47 | return this; |
| 48 | } |
| 49 | |
| 50 | @Override |
| 51 | public Window setWindowSize(int width, int height) { |
nothing calls this directly
no test coverage detected