[TIMOB-9978] Android: Custom tab views
| GitHub Issue | n/a |
|---|---|
| Type | New Feature |
| Priority | Low |
| Status | Open |
| Resolution | Unresolved |
| Affected Version/s | Release 2.1.0, Release 3.0.0 |
| Fix Version/s | n/a |
| Components | Android |
| Labels | api |
| Reporter | Josh Roesslein |
| Assignee | Unknown |
| Created | 2012-07-16T16:43:12.000+0000 |
| Updated | 2018-02-28T20:04:20.000+0000 |
Description
Android supports setting your own custom view for the "tab" in a tab group.
This might be useful if you want to customize the tab's look or do dynamic updates
that the built-in tab view does not provide (ex: title or icon update).
Example
var tab = Ti.UI.createTab();
tab.view = Ti.UI.createView({layout: 'horizontal'});
tab.view.add(Ti.UI.createLabel({text: 'Hello!'}));
Hi, i don't get it.. Is this feature going to happen? Thanks