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
This commit is contained in:
Eugene Popovich 2013-10-03 09:04:47 +03:00
parent 11447ec081
commit c3798207bc
5 changed files with 6 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 895 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 404 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 487 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before After
Before After

View file

@ -462,10 +462,12 @@ public class NavigationHandlerFragment extends CommonFragment {
@Override @Override
public void run() { public void run() {
if (getSupportActivity() != null && !getSupportActivity().isFinishing()) if (getSupportActivity() != null && !getSupportActivity().isFinishing()) {
{ getSupportActivity()
getSupportActivity().setActionBarTitle(": " .setActionBarTitle(
+ CommonUtils.getStringResource(wrappers.get(position).mTitleId)); " "
+ CommonUtils.getStringResource(wrappers
.get(position).mTitleId));
refreshLeftView(); refreshLeftView();
} }
} }