Affichage des articles dont le libellé est Navigation. Afficher tous les articles
Affichage des articles dont le libellé est Navigation. Afficher tous les articles

lundi 24 mars 2014

[Q] Navigation bar has disappeared topic




I've got my nexus 5 for a couple of months now, and as soon as I've had it I rooted it and installed the xposed framework for modifications. I use gravity box in order to use pie controls and hide my navigation bar but I kinda miss my on-screen buttons but can't seem to find a way to do it.
I've enabled the navigation bar in gravity box for no success, and tried to used the GMD hide soft keys application but that doesn't seem to work as well (either does several other applications)..
Even tried and disabled gravity box but nav bar just won't come back..
Both the Xposed framework and Gravity box are update
.

I am using the american Nexus 5 32gb model with KK 4.4.2.
Would very much appreciate the assistance!





dimanche 23 mars 2014

Navigation bar mod topic




hi guys im running on stock kitkat.
anyone knows how to swap the back and recent tasks button without installing any app?
i already tried gravity box for kitkat but it breaks the function of the volume buttons.





mercredi 19 mars 2014

G2 navigation bar and themer compatibility topic




hi there, i use the rom aeonflex on my LG G2 and can't use themer because of the screen resolution, G2 uses 1920*1080, but in the settings menu of themer says 1803*1080, DPI 480.

themer says it cannot work cause the menu bar reduces the screen dimension and cannot work.

some help?????





lundi 10 mars 2014

[Q] How to add custom buttons on Navigation bar? topic




I used to be able to get many more button options for the nav bar on JellyBean ROMs but I seem to be able to add only the menu or search button to the nav bar on KitKat ROMs. Is there any way to add other buttons or would I have to edit the SystemUI.apk manually?

I'm currently running crDroid simple.
If there are any KitKat ROMs which support adding custom buttons, such as the power button, or apps, I would appreciate it if someone could point me in the right direction.





lundi 24 février 2014

[Q] Note 10.1 n8000 WIFI and navigation. topic




Hello everyone,
Im thinking to Note 10.1 wifi and my question is: would a 3rd party navigation app like Navigon work or that would only work with the 3G models.
Thanks in advance





vendredi 21 février 2014

Navigation Bar topic




Well, the reason of this topic is that some aspects of the navigation bar don't work or don't work correctly. First, when i'm on home, either on the default launcher or in the Google Experience Launcher, the navigation bar is completely black, not even transparent.

I thought that the navigation bar, as the status bar, would be translucent. But it isn't even transparent.

Is there any solution for it? Without rooting? I still don't want to lose warranty as I just have got this Moto X since mid-January. I'll root in two or three months.

Anyway, solutions?

Sent from my XT1058 using xda app-developers app





[Q] nexus 5 navigation bar odd behaviour topic




Hello please check the attached screen shots of my nexus 5 home screen and look at the navigation bar, instead of navigation keys it displays "back" "home" and "task" written there.It works fine but please tell me what is this issue?








Attached Thumbnails


Click image for larger version<br/><br/>Name:	Screenshot_2014-02-22-02-21-28.jpg<br/>Views:	N/A<br/>Size:	208.5 KB<br/>ID:	2593053
 

Click image for larger version<br/><br/>Name:	_20140222_022153.JPG<br/>Views:	N/A<br/>Size:	27.7 KB<br/>ID:	2593054
 
















mercredi 19 février 2014

[I9500] [AOKP] [4.4.2] Test Unofficial BUILD 20-02-14 topic




1st Test Build for our device, Test and report bugs here. Bugs should be the same as CM.

XDA:DevDB Information
AOKP Development, a ROM for the Samsung Galaxy S 4

Contributors
alvin14
ROM OS Version: 4.4.x KitKat
ROM Kernel: Linux 3.4.x
ROM Firmware Required: Wipe Data/Factory Reset if coming from another ROM or Outdated version of AOKP
Based On: AOKP

Version Information
Status: Testing

Created 2014-02-20
Last Updated 2014-02-19





mardi 18 février 2014

Lock screen buttons stuck on navigation bar topic




So... After 30 minutes of use. The little lock screen arrow and camera buttons appear on the navigation bar. Can't use home or back. Have to reboot.

Any ideas?

Rooted Dev edition. 4.4.2

Everything else works 100% fine

Using xposed and gravity box. Just removed it to test.

Any one run into this?

Sent from my XT1053 using xda app-developers app





need air navigation or similar application topic




hi i need air navigation application or similar it .. for android .if anyone have it .plz help me ...





mercredi 29 janvier 2014

[Q] The Latest Nightly cm11.0 20140121 status bar and Navigation bar isn't Transparen topic




Hi,everybody.I need some help.
The Latest Nightly cm11.0 20140121 status bar and Navigation bar isn't Transparen?





How to use Navigation Drawer inside Tabs menu. topic




Hi guys.

I've been developing an app which has Swipeable menu in bottom and one of the pages , should have a Navigation Drawer to change its own Fragments.

MainActivity.java

Code:


package com.example.elizehprotowithshlkandvpis;

import com.example.elizehprotowithshlkandvpis.adapter.MainMenuAdapter;
import com.viewpagerindicator.TabPageIndicator;

import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.view.ViewPager;
import android.view.Menu;

public class MainActivity extends FragmentActivity {
        private static final String[] CONTENT = { "Home", "AboutUs", "Maps", "Resturants", "Tours", "CustomerClub", "Neccesseries", "UrgentCall" };
        private ViewPager mViewPager;
        private FragmentPagerAdapter adapter;
       
        @Override
        protected void onCreate(Bundle savedInstanceState) {
               
                super.onCreate(savedInstanceState);
                setContentView(R.layout.activity_main);
               
                adapter    = new MainMenuAdapter(getSupportFragmentManager());
                mViewPager = (ViewPager) findViewById(R.id.pager);
                mViewPager.setAdapter(adapter);
               
                TabPageIndicator indicator = (TabPageIndicator) findViewById(R.id.indicator);
                indicator.setViewPager(mViewPager);
               
        }

        @Override
        public boolean onCreateOptionsMenu(Menu menu) {
                // Inflate the menu; this adds items to the action bar if it is present.
                getMenuInflater().inflate(R.menu.main, menu);
                return true;
        }
       
        public static String[] getCONTENT() {
                return CONTENT;
        }

}


MainMenuAdapter.java

Code:


package com.example.elizehprotowithshlkandvpis.adapter;

import com.example.elizehprotowithshlkandvpis.MainActivity;
import com.example.menuclasses.AboutUs;
import com.example.menuclasses.CustomerClub;
import com.example.menuclasses.Maps;
import com.example.menuclasses.Neccesseries;
import com.example.menuclasses.Tours;
import com.example.menuclasses.UrgentCall;
import com.example.menuclasses.Resturants;

import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;

public class MainMenuAdapter extends FragmentPagerAdapter {
        private static final String[] CONTENT = { "Home", "AboutUs", "Maps", "Resturants", "Tours", "CustomerClub", "Neccesseries", "UrgentCall" };

        private final int HOME_INDEX              = 0;
        private final int ABOUTUS_INDEX      = 1;
        private final int MAPS_INDEX              = 2;
        private final int RESTURANTS_INDEX  = 3;
        private final int TOURS_INDEX        = 4;
        private final int CUSTOMERCLUB_INDEX = 5;
        private final int NECCESSERIES_INDEX = 6;
        private final int URGENTCALL_INDEX  = 7;
        private final int NUMBEROFMENUS            = CONTENT.length;
       
        public MainMenuAdapter(FragmentManager fm) {
                super(fm);
                // TODO Auto-generated constructor stub
        }

    @Override
    public CharSequence getPageTitle(int position) {
        String[] CONTENT = MainActivity.getCONTENT();
            return CONTENT[position % CONTENT.length].toUpperCase();
    }

       
        @Override
        public Fragment getItem(int index) {
                switch(index) {
                case HOME_INDEX:
                        return new AboutUs();
               
                case ABOUTUS_INDEX:
                        return new AboutUs();
               
                case MAPS_INDEX:
                        return new Maps();
               
                case RESTURANTS_INDEX:
                        return new Resturants();
               
                case TOURS_INDEX:
                        return new Tours();
               
                case CUSTOMERCLUB_INDEX:
                        return new CustomerClub();
               
                case NECCESSERIES_INDEX:
                        return new Neccesseries();
               
                case URGENTCALL_INDEX:
                        return new UrgentCall();
                }
                return null;
        }


        @Override
        public int getCount() {
                // TODO Auto-generated method stub
                return NUMBEROFMENUS;
        }

}


The Fragment that should contain a Navigation Drawer is Resturants , also drawer's mainactivity is implemented with Sherlock Library(SherlockFragmentActivity).
I'm puzzled how to call the SherlockFragmentActivity from the SherlockActivity :)

Thanks





samedi 25 janvier 2014

[Q] Home Bar / Navigation bar help constantly on topic




The one to save any confusion it is the one with open tabs, home button, back button and open task manager.

it is on constantly, even when apps are open.

it used to go off when i opened apps but no longer does and just pushes the app up so i loose the top section off the app.

i've looked and googled but can't find anything.

The tab is rooted but i've not installed anything to change it.

Can some kind sole tell me where the setting is to put it back to default.

Thank you

Galaxy Tab Model : 2 7.0
Galaxy Tab Number : GT-P3110
Android Version : 4.1.1 Jellybean





[Q] Home Bar / Navigation bar help constantly on topic




This one to save any confusion it is the one with open tabs, home button, back button and open task manager.

it is on constantly, even when apps are open.

it used to go off when i opened apps but no longer does and just pushes the app up so i loose the top section off the app.

i've looked and googled but can't find anything.

The tab is rooted but i've not installed anything to change it.

Can some kind sole tell me where the setting is to put it back to default.

Thank you

Galaxy Tab Model : 2 7.0
Galaxy Tab Number : GT-P3110
Android Version : 4.1.1 Jellybean