(String titlebg)
| 2266 | } |
| 2267 | |
| 2268 | @SuppressWarnings("rawtypes") |
| 2269 | public <T> UI<VSelectBox> getSelectBox(String titlebg) { |
| 2270 | SelectBoxStyle style = new SelectBoxStyle(); |
| 2271 | style.fontColor = Color.BLACK; |
| 2272 | style.background = getDrawable(titlebg); |
| 2273 | style.font = getFont(); |
| 2274 | style.scrollStyle = new ScrollPaneStyle(getRectColorDrawable(1, 1, new Color(0.4f, 0.4f, 0.4f, 0.6f)), null, null, null, null); |
| 2275 | style.listStyle = new ListStyle(getFont(), Color.BROWN, Color.WHITE, getRectColorDrawable(1, 1, new Color(1, 1, 0, 0.3f))); |
| 2276 | VSelectBox select = new VSelectBox(style); |
| 2277 | return getUI(select); |
| 2278 | } |
| 2279 | |
| 2280 | /** |
| 2281 | * 创建ScrollPane |
nothing calls this directly
no test coverage detected