(String title)
| 63 | } |
| 64 | |
| 65 | @Override |
| 66 | public Window setTitle(String title) { |
| 67 | assert _onUIThread() : "Should be run on UI thread"; |
| 68 | _nSetTitle(title); |
| 69 | return this; |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * Hide the title from the title bar without changing the text content. |
nothing calls this directly
no test coverage detected