Issue #466 (Card 14)
- NavigationHandlerFragment: removed ":" from the setActoinBarTitle call such as no more "trovebox" text is used in the actionbar logo - res/drawable-x/actionbar_logo.pnog: replaced with icon only logo
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 895 B |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 404 B |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 487 B |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 1.1 KiB |
|
@ -462,10 +462,12 @@ public class NavigationHandlerFragment extends CommonFragment {
|
|||
|
||||
@Override
|
||||
public void run() {
|
||||
if (getSupportActivity() != null && !getSupportActivity().isFinishing())
|
||||
{
|
||||
getSupportActivity().setActionBarTitle(": "
|
||||
+ CommonUtils.getStringResource(wrappers.get(position).mTitleId));
|
||||
if (getSupportActivity() != null && !getSupportActivity().isFinishing()) {
|
||||
getSupportActivity()
|
||||
.setActionBarTitle(
|
||||
" "
|
||||
+ CommonUtils.getStringResource(wrappers
|
||||
.get(position).mTitleId));
|
||||
refreshLeftView();
|
||||
}
|
||||
}
|
||||
|
|