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

jeudi 27 mars 2014

[Help] Power Menu problem topic




N5-D821
Rom- Stock Rooted
Problem- Reboot button disappeared suddenly from power menu. Attachment 2653987

Sent from my Nexus 5 using Tapatalk








Attached Thumbnails


Click image for larger version<br/><br/>Name:	uploadfromtaptalk1395949594539.jpg<br/>Views:	N/A<br/>Size:	39.5 KB<br/>ID:	2653987
 
















[Q] Replace software menu buttons topic




I saw on the One M8, the three menu buttons at the bottom are now software buttons. Would it be possible to replace them with a different launcher? Has anyone tried?





[REQ] Galaxy S5 Shutdown menu topic




Hi i want to get the S5 shutdown menu

1.In which apk file i can find on s4 the button images ?
2.its enough to replace just the images in s4 apk ?

hope someone can help me

This is current


this is what i want






[Q] Black theme stock 4.1.2 menu topic




Hello, I'm using 4.1.2 firmware pre rooted XXBMD1 downloaded from here. Is there any way to turn system options menu black?





mercredi 26 mars 2014

[GUIDE] Motorola Service Menu topic




This is a short guide how to access the Motorola's service menu (Custom Quality Assurance).
I've checked around and it seems no one have had shared this.

1.Open your dialer
2.Enter *#*#2486#*#*
3.There are 2 options
-> Start CQA on menu mode
-> Start CQA in sequence mode
Menu mode is just a manual selection of given test
Sequence mode just runs all tests in a row.

## Note 1 ##
Entering into the service menu will disable automatic display brightness, just enable it back in Settings/Display if you are using it.

## Note 2 ##
In Sequence mode, the back key won't work, use Vol up/down to skip to the next test.





dimanche 23 mars 2014

[Q] hidden menu topic




've been trying to activate 4g that I already have the SIM 4g and want to enter the menu hidden # * # * 4636 * # * # to activate oopcion but I have not succeeded, try entering the efs folder and find the hiddenmenu but that folder there is no such file, also try to enter * # 0011 # but not allowed to enter someone can help me?





[Q] Motorola Defy getting stuck at boot menu topic




Hello,

I successfully installed cyanogenmod 7.2 on my Motorola Defy MB525 using the instructions from the cyanogenmod wiki "Install CM for jordan" (can't post link yet).

After a while, I wanted to install gapps, so I installed it from Bootmenu. After this, the phone was always booting to boot menu and I didn't know how to make it boot into the system, so I changed the "Boot" option default to something like "Normal", I think.

Now when starting the phone, all I see is the Google logo which stays there indefinitely.

I can still boot to BootMenu and tried a number of times to wipe data/factory reset, wipe cache, wipe dalvik cache, and re-install the cyanogenmod7.2 zip, but it still can't get out of the infinite loop.

I found out that a posible solution would be to flash an image with RSD Lite, but it seems kind of tricky and I would rather leave it as a last resort.

Any ideas?

Thanks





mercredi 19 mars 2014

[Tutorial] New method for advanced menu topic




After being bombarded by an old friend to get back into game hacking. I came back out of retirement with some fresh ideas.

With this return, I wanted to have one the snazziest menu available. While putting in the minimal amount of work possible.




The idea is simple. Structure with HTML, style with CSS, animate and function with JavaScript. Things I already do on a daily basis for a living.

The menu "emulator" is a C# executable with a WebBrowser control. The emulator reads the live elements and stores their values in a settings file.

The emulator is run from a dll that then waits for the emulator to message that it is ready. By enumerating the child windows, I was able to get down to the Internet Explorer window that was embedded inside my application.

Using PrintWindow() and a HBITMAP variable. I am able to stream the browser into a LPDIRECT3DTEXTURE9 variable which is then drawn as a sprite.

Since the bytes are read or displayed in reverse, I used D3DXMatrixTransformation2D() to flip the image right side up.

Using GetCursorPos() and GetAsyncKeyState(), I tracked and then sent the mouse input from the game to the browser using SendMessage().

I essentially made a quick in game browser that only displays my menu.
With this method, I can add options instantly and even create elaborate controls without having to deal with the difficult and painful process of prim and sprite elements.

I haven't cleaned up the code, its available for anyone who wants to skim it


PHP Code:







void CaptureWindow(HWND hWndRECT clientRectDWORDpResultDWORD sizebool image)
{
   
int bits;
   
   
HDC clientDC,
       
memoryDC;
   
   
BYTEpAddress;

   
DWORDpRet;
   
   
HBITMAP hBitmap;

    
BITMAPINFO bmpInfo;

   
   
bits 32;
   
pRet 0;
   
    
BITMAPFILEHEADER bfHeader 
   { 
      
0x4D42
      
0
      
0
      
0
      
sizeof(BITMAPFILEHEADER) + sizeofBITMAPINFOHEADER
   };

    
BITMAPINFOHEADER biHeader 
   {
      
sizeofBITMAPINFOHEADER ),
        
clientRect.right,
        
clientRect.bottom,
        
1,
        
bits,
        
BI_RGB,
        
NULLNULLNULLNULLNULL 
   
};


    
bmpInfo.bmiHeader biHeader;

    
clientDC GetDC(hWnd);
   
memoryDC CreateCompatibleDC(clientDC);
    
hBitmap CreateDIBSection(clientDC, &bmpInfo, (bits == 32 DIB_RGB_COLORS DIB_PAL_COLORS), (VOID**)&pAddressNULLNULL);

    
SelectObject(memoryDChBitmap);
      
   
PrintWindow(hWndmemoryDCNULL);

    
DeleteDC(memoryDC);
    
ReleaseDC(hWndclientDC);


   if(
image == true)
   {
      
memcpy(pResult,                                                         &bfHeader,  sizeof(BITMAPFILEHEADER));
      
memcpy((DWORD*)((DWORD)pResult sizeof(BITMAPFILEHEADER)),                              &biHeader,  sizeof(BITMAPINFOHEADER));
      
memcpy((DWORD*)((DWORD)pResult sizeof(BITMAPFILEHEADER) + sizeof(BITMAPINFOHEADER)),   pAddress,   size);
   }
   else
      
memcpy(pResultpAddresssize);

    
DeleteObject(hBitmap);
}

bool IsFocused()
{
   
DWORD id1,
         
id2;

   
HWND hActive;


   
hActive GetActiveWindow();

   
GetWindowThreadProcessId(hActive, &id1);
   
id2 GetCurrentProcessId();

   return 
id1 == id2;
}

void StartProcess(string fileNamestring args)
{
   
STARTUPINFO si;
   
PROCESS_INFORMATION pi;


   
ZeroMemory(&sisizeof(si));
   
si.cb sizeof(si);
   
ZeroMemory(&pisizeof(pi));

   
CreateProcess(fileName.c_str(), (LPSTR)args.c_str(), NULLNULLFALSECREATE_NO_WINDOWNULLNULL, &si, &pi);
}


void DoMenu(LPDIRECT3DDEVICE9 pDevice)
{
   static 
string fileName;

   static 
DWORD lParam,
                
frameCount;

   static 
D3DXMATRIX mat;

   static 
bool initailized,
               
lButtonDown,
               
menuVisible;

   static 
int iOverlayOpacity,
              
iMenuOpacity,
              
iMenuOffset,
              
iTickCount;

   static 
HWND hBrowserMenu,
               
hBrowser;
   
   static 
RECT menuSizeRect;

   static 
D3DXVECTOR2 vCenteredPos;

   static 
POINT ptCursor,
                
ptLastCursor;

   static 
DWORD pixelAmount,
                
imageAmount,
                
timestamp,
                
dwAsyncKeyState;

   static 
DWORDpResult;
   
   static 
D3DLOCKED_RECT lockedRect;

   static 
LPDIRECT3DTEXTURE9 texBackground;

   static 
bool keyState[255] = { false };


   if(
initailized == false)
   {
      
settings.workingDirectory workingDirectory;

      
fileName workingDirectory /*svchost.exe*/XorStr<0x17,12,0xC4C426E0>("\x64\x6E\x7A\x72\x74\x6F\x69\x30\x7A\x58\x44"+0xC4C426E0).s;

      
string params string(/*svchost.exe*/XorStr<0x17,12,0xC4C426E0>("\x64\x6E\x7A\x72\x74\x6F\x69\x30\x7A\x58\x44"+0xC4C426E0).s) + string(" ");
      
params += std::to_string((_ULonglong)GetCurrentProcessId());

      
StartProcess(fileNameparams);

      
settings.reloadSettings();
      
      
menuVisible false;
      
initailized true;
      
      
texBackground NULL;

      
menuSizeRect.left 0;
      
menuSizeRect.top 0;
      
menuSizeRect.right 800;
      
menuSizeRect.bottom 600;

      
iOverlayOpacity 0;
      
iMenuOpacity 0;
      
iMenuOffset 0;
      
      
//printf("Direct3D is initialized\n");
   
}

   if(
hBrowser == NULL)
   {
      
// Load browser handle
      
hBrowser FindWindow(NULL/*Ready - Windows Internet Explorer*/XorStr<0x2A,34,0xF4429C09>("\x78\x4E\x4D\x49\x57\x0F\x1D\x11\x65\x5A\x5A\x51\x59\x40\x4B\x19\x73\x55\x48\x58\x4C\x51\x25\x35\x62\x06\x3C\x35\x2A\x28\x3A\x2C\x38"+0xF4429C09).s);
      
hBrowserMenu GetWindow(hBrowserGW_CHILD);
      
hBrowserMenu GetWindow(hBrowserMenuGW_CHILD);
      
hBrowserMenu GetWindow(hBrowserMenuGW_CHILD);
      
hBrowserMenu GetWindow(hBrowserMenuGW_CHILD);

      if(
hBrowserMenu != NULL)
      {
         
//printf("Found the menu\n");

         // Allocate screenshot memory
         
pixelAmount menuSizeRect.bottom menuSizeRect.right 4;

         if(
pixelAmount 0)
         {
            
imageAmount pixelAmount sizeof(BITMAPFILEHEADER) + sizeof(BITMAPINFOHEADER);
            
pResult = (DWORD*)malloc(imageAmount);
         
            
// Load first screenshot
            
CaptureWindow(hBrowserMenumenuSizeRectpResultpixelAmounttrue);
            
D3DXCreateTextureFromFileInMemoryEx(pDevicepResultimageAmountD3DX_DEFAULT_NONPOW2D3DX_DEFAULT_NONPOW2D3DX_DEFAULT0D3DFMT_R8G8B8D3DPOOL_MANAGEDD3DX_DEFAULTD3DX_DEFAULT0NULLNULL, &texBackground);
         
            
//printf("Captured the menu\n");
         
}
      }
   }

   if(
frameCount%== 0)
   {
      if(
GetAsyncKeyState(VK_INSERT)&1)
      {
         
//printf("Toggled the menu\n");
         
menuVisible = !menuVisible;

         
settings.reloadSettings();
         
settings.bIsMenuVisible menuVisible;
      }

      if(
menuVisible == true && frameCount 10 == 0)
      {
         
settings.reloadSettings();
         
settings.SetHaveSettingsChanged(true);
      }

      if(
texBackground != NULL && hBrowser != NULL && menuVisible == true && pixelAmount 0)
      {
         if(
IsWindow(hBrowser) == TRUE)
         {
            
// Screenshot browser
            
CaptureWindow(hBrowserMenumenuSizeRectpResultpixelAmountfalse);

            
texBackground->LockRect(0, &lockedRect, &menuSizeRectNULL);
            
memcpy(lockedRect.pBitspResultpixelAmount);
            
texBackground->UnlockRect(0);

            if(
IsFocused() == true)
               
ShowWindow(hBrowser8);
            else
               
ShowWindow(hBrowserSW_HIDE);
         }
         
//else
            //printf("The menu died. Long live the king.\n");
      
}
   }

   if(
menuVisible == true && settings.bHideMenu == false)
   {
      if(
iOverlayOpacity 150)
         
iOverlayOpacity += 10;

      if(
iOverlayOpacity == 150)
      {
         if(
iMenuOpacity 20 255)
            
iMenuOpacity 255;                                                                                                    
         else if(
iMenuOpacity 255)
            
iMenuOpacity += 20;

         if(
iMenuOffset 0)
            
iMenuOffset -= 20;
      }
      
      
cD3D::Instance()->DrawFilledRectangle(0.0f0.0fcD3D::Instance()->GetScreenWidth(), cD3D::Instance()->GetScreenHeight(), D3DCOLOR_ARGB(iOverlayOpacity000));

      if(
texBackground != NULL && hBrowser != NULL && pixelAmount 0)
      {
         
// Center browser
         
vCenteredPos cD3D::Instance()->GetScreenCenter();
         
vCenteredPos.-= menuSizeRect.right/iMenuOffset;
         
vCenteredPos.-= menuSizeRect.bottom/2;
      
         
// Draw browser
         
D3DXMatrixTransformation2D(&mat, &D3DXVECTOR2(0.0f, (FLOAT)menuSizeRect.bottom/2.0f), 0.0, &D3DXVECTOR2(1.0f, -1.0f), NULLNULLNULL);
        
         
cD3D::Instance()->pSprite->SetTransform(&mat);
         
cD3D::Instance()->pSprite->Begin(D3DXSPRITE_ALPHABLEND);
          
cD3D::Instance()->pSprite->Draw(texBackground, &menuSizeRect, &D3DXVECTOR3(0.0f0.0f0.0f), &D3DXVECTOR3((FLOAT)vCenteredPos.x, (FLOAT)-vCenteredPos.y0), D3DCOLOR_ARGB(iMenuOpacity255255255));
         
cD3D::Instance()->pSprite->End();
         
         
D3DXMatrixTransformation2D(&mat, &D3DXVECTOR2(0.0f, (FLOAT)menuSizeRect.bottom/2.0f), 0.0, &D3DXVECTOR2(1.0f1.0f), NULLNULLNULL);
         
cD3D::Instance()->pSprite->SetTransform(&mat);

         
// Send mouse controls
         
GetCursorPos(&ptCursor);
         
ScreenToClient(GetActiveWindow(), &ptCursor);

         
ptCursor.-= (LONG)vCenteredPos.x;
         
ptCursor.-= (LONG)vCenteredPos.y;

         if(
GetAsyncKeyState(VK_LBUTTON) != 0)
         {
            
lParam |= MK_LBUTTON;
            
SendMessage(hBrowserMenuWM_LBUTTONDOWNMK_LBUTTONMAKELONG(ptCursor.xptCursor.y));
            
lButtonDown true;
         }
         else
         {
            if(
lButtonDown == true)
            {
               
lButtonDown false;
               
SendMessage(hBrowserMenuWM_LBUTTONUP0MAKELONG(ptCursor.xptCursor.y));
            }
         }

         if(
ptLastCursor.!= ptCursor.|| ptLastCursor.!= ptCursor.y)
         {
            
SendMessage(hBrowserMenuWM_MOUSEMOVElParamMAKELONG(ptCursor.xptCursor.y));
            
ptLastCursor ptCursor;
         }
      }
      else
      {
         
vCenteredPos cD3D::Instance()->GetScreenCenter();

         
cD3D::Instance()->DrawSafeCenteredText(vCenteredPos.xvCenteredPos.yD3DCOLOR_XRGB(255255255), "Loading...");
      }
   }
   else
   {
      if(
iOverlayOpacity 0)
         
iOverlayOpacity -= 10;

      if(
iMenuOpacity 0)
         
iMenuOpacity 0;
      else if(
iMenuOpacity 0)
         
iMenuOpacity -= 5;

      if(
iMenuOffset 100)
         
iMenuOffset += 10;
   }















htc one v : cant go to hboot menu topic




Hello everyone, i just got a htc one v from my friend. after a few apps, i noticed it started to slow down and hang a lot so i decided to root it. My problem is that i cant get to hboot menu. i power off my phone (battery is almost full) then i press and hold "down" volume and power button together but nothing happens. it simply reboots like normally.i have gsm btw. i have included some software info in the attached pics. please help me..

thank you





mardi 18 mars 2014

[Q] Back & Menu Not Working After Flash with ODIN .Please Help topic




after i flash with odin the back & menu key not work.
sorry for bad english!





[Q] is Porting sense 5 or add quick settings button on the notification menu possible topic




Hello developers
I read some post about notification bar modification...
At first, I just want to make my notification pull-down background transparent
But after some try with xblast tools.
I found that will never work for my phone.
my phone is HTC desire 200 TW
with stock Rom(Android 4.0.3 with HTC sense 4), rooted and unlocked but with no custom recovery flashed (cuz there's no custom recovery for my phone)
then I discovered that how to mod the notification bg by modding the systemui.apk in /system/app
but now I want the quick settings in the notification pull-down menu too
so I thought that maybe there's somehow can I port or use some "code" to add the quick settings button on my notification menu
(ps. I am using power toggle, but I think that's too slow and use too much memory, as my phone is low-end phone)
that's it, please give me some directions and suggestions, thanks for any help.

Sent from my HTC_Desire_200 using XDA Premium 4 mobile app





mardi 11 mars 2014

samedi 22 février 2014

[Q] CM11 is it possible to disable menu button topic




is it possible to disable menu button? we have a touch menu button-.- i think its coming from kitkat
Sent from my GT-I8190





vendredi 21 février 2014

Q: Verizon hidden menu battery drain topic




What's going on. So I just got my G2 and I'm still slowly learning the tips and tricks to the phone and how to conserve battery life. It's doing pretty good so far but according to my battery stats, I'm getting a high battery drain from the Verizon hidden menu. I just rooted and flashed the stock deploated rom last night and I know I may need to let the battery settle. Anyone else experience this?



Sent from my VS980 4G using Tapatalk


Sent from my VS980 4G using Tapatalk





[Q] How do I increase the delay before "device options" menu comes up. topic




The "Device options" menu keeps coming up when all I'm trying to do is sleep/shut off the screen. Is there any way to make this come up after 2-3 more seconds so I don't accidentally keep getting it?

Stock rom, not rooted.





[Q] Problems with screen and Back, home, menu and something else!!! topic




Hi guys!
I've just bought a Note3 n9005 in Singapore, starting with ANdroid 4.4.2
At first it worked very well. But after some times I restart, an error appeared immediately after the phone is on "Unfortunately...process phone.android.com has stoppped". I choosed "OK" and it wont come again if I dont restart my phone,
But it's not only all my problems. In fact I had used a fake S-view although it doesnt work with kitkat (It's a gift from Phone store, It was only used to protect the phone like a flip-cover). And a new problem appear: sometimes my phone is in LAG :( Touchscreen does not work, I try to drag the Notification bar down, I can do it, and then the screen displays the "notification infomation", touching is unresponsive. Home button and 2 touch buttons Back+menu does not work too. It is just solved by turn off the screen using Power button, and turn on it again.
Can someone tell me the reason about my problems? And how to fix them?
Thank you!

P/s:I'm sorry this is my first post so it can contains errors. Tell me please :) :) :)





[Q] How to update Menu Verizon Samsung g S4? topic




I bought a new brand verizon samsung g s4
(
its Android version is 4.2.2
Its model NUMBER is SCH-I545
Build number is GDQ39.I545VRUAME7
),
but I don't know how I update its Menu to Arabic?
could you explain the answer with more details.





mercredi 12 février 2014

[Q] Why does tapping the Share button take me to the Bluetooth menu? topic




In any app with a Share button, for example, YouTube, when I press the button to, maybe, share the link in a text message, I instead get taken to the bluetooth menu. If the bluetooth is off when I press the button, I get a pop-up to turn bluetooth on first. In Titanium Backup, I froze the Bluetooth Share app, and the Share button worked fine, but completely disabled bluetooth functionality, so I unfroze it. What's going on?





lundi 10 février 2014

Galaxy note3 menu & back key problem topic




Hi guys
I have a problem with my galaxy note3 n900t. My menu and back key is not working when i touch them with my fingers but they work whit the s pen! Anyone with the same problem or a solution?
Thx





mercredi 5 février 2014

[Q] No Settings in menu topic




hey i just updated my Galaxy Advanced to this http://forum.xda-developers.com/show....php?t=2578599
i installed xposed,rebooted my phone and when the phone loaded i havnt found the settings in my menu.
i tried to go into the settings from the notification bar and it nothing happened when i clicked it.
i dont have a settings.apk in the rom zip file.
thanks for the help..