User-agent: Mediapartners-Google Disallow: User-agent: * Disallow: /search Allow: / Sitemap: http://nano7mobile.blogspot.com/sitemap.xml Nano Mobile: Menu
Affichage des articles dont le libellé est Menu. Afficher tous les articles
Affichage des articles dont le libellé est Menu. Afficher tous les articles

No Menu button CM12 topic






As title says. There's no menu button. So in chrome for example you have to open a new tab, hit favorites cause there's no other way. In Facebook no menu button to save pics...

Anyone have any suggestions?






[Bug Report] App crashes when pressing the menu button topic






Mx player crashes when I press the android menu button in any menu or while playing a video, here is the log as plain text:

=========================
Fabricante: LGE
Modelo: LG-E980h
Marca: lge
Versión: 4.1.2 (REL)
Compilación: lge/geefhd_sca_com/geefhd:4.1.2/JZO54K/E980h10a-SCA-XXX.1378239132:user/release-keys
Núcleo: Linux version 3.4.0-perf-g2b81888 (fabio.morishima@lgmccm04-sp) (gcc version 4.6.x-google 20120106 (prerelease) (GCC) ) #1 SMP PREEMPT Tue Sep 3 17:31:51 BRT 2013
CPU: 4 core(s) 1,73 GHz (family:1 features:511)
Arquitectura de la CPU: 7
Características de la CPU: swp half thumb fastmult vfp edsp neon vfpv3 tls vfpv4
Plataforma de la placa: msm8960
Conjunto de instrucciones: armeabi-v7a (+armeabi)
Resolución: 1080 x 1920
Tamaño de pantalla disponible (DIP): 360 x 615 (smallest: 360)
Tablet: false
Tamaño de pantalla: Normal
Densidad: 3.0 (480)
Escala de fuente: 1.0
Botón principal de hardware: true
Configuración regional: es_AR
Memoria total: 1840740 kB (1840740kB)
Memoria libre: 58424 kB
=========================






no sound profile "menu"? topic






hello all

i updated my s5 today to lollipop over kies. then rooted it. now i have a problem or maybe a missunderstanding. looking for the good old silent mode i read its gone and that it has been replaced by those soundprofiles. so far so good, or not really.

as i understood form reading some articles the volume button should summon a menu where i can choose between those 3 different sound profiles, but all i get pushing the volume button is a simple slider. see the screenshot pic attached.

is this normal?








Attached Thumbnails


Click image for larger version<br/><br/>Name:	Screenshot_2015-01-12-23-00-22.png<br/>Views:	N/A<br/>Size:	89.9 KB<br/>ID:	3112061
 

















Fire TV Stick side loaded apps on the main menu how to with out root topic






Not sure if this is known already but i found a way to make my side loaded apps appear under apps on my fire stick main menu using agk fire app.
I download and installed the amazon store apk on my phone then side-loaded it on my fire tv stick, after that you will be able to see all the side-loaded apps under app section thus eliminating the need to use fired tv launcher or llama app,

I am not sure if it works with the fire tv but i guess someone can try and report back.






Nexus 6 extended power menu topic






Is this possible to implement to our nexus: http://forum.xda-developers.com/goog...stock-t2998639 ? That would be great.






[howto] 3-way power menu fo 5.0.1 deodex stock topic






was asked to make this statement,sorry for the English ,it's Google translator :p

result http://forum.xda-developers.com/goog...eodex-t2997128

for made this, need 5.0.1 (deodex) http://forum.xda-developers.com/goog...ework-t2994027
for decompile im use ApkTools200RC3m http://d-h.st/26rF

part 1



decompile framework-res.apk


open \framework-res\res\values\arrays.xml
looking for <item>power</item> immediately below this line inserted


Code:


<item>reboot</item>
<item>recovery</item>


then immediately open strings.xml and add at the end

Code:


<string name="reboot_recovery">Recovery</string>

same thing in the folder values-ru (or similar for your country)

Code:


<string name="reboot_recovery">Рекавери</string>

example:
values-ru (for Russia)
values-it (for Italy)
and etc....

from arhive framework add files

compile ,then assembled renamed framework222-res.apk and decompile again (that would be assigned id)
take away C:\ApkTools200RC3m\framework222-res\res\values\public.xml in the main that
(replaced the one that is there on this)
open public.xml in the editor (we'll be here to watch the assigned id)
collect ...



part 2



decompile android.policy.jar
from arhive policy add files

open GlobalActions.smali

paste below this line 20: Lcom/android/internal/policy/impl/GlobalActions$MyAdapter;,

the following:


Code:


      Lcom/android/internal/policy/impl/GlobalActions$RebootAction;,
        Lcom/android/internal/policy/impl/GlobalActions$RebootRecovery;,


paste below this line 35: .field private static final GLOBAL_ACTION_KEY_POWER:Ljava/lang/String; = "power"

the following:


Code:


.field private static final GLOBAL_ACTION_KEY_REBOOT:Ljava/lang/String; = "reboot"

.field private static final GLOBAL_ACTION_KEY_RECOVERY:Ljava/lang/String; = "recovery"


and delete this

.field private static final GLOBAL_ACTION_KEY_SETTINGS:Ljava/lang/String; = "settings"


field line 1026:
const-string v0, "airplane"

and replace the code from .line 275 to .line 276


Code:


  :cond_3
    const-string v0, "airplane"

    invoke-virtual {v0, v7}, Ljava/lang/String;->equals(Ljava/lang/Object;)Z

    move-result v0

    if-eqz v0, :cond_4



at


Code:


  :cond_3
    const-string v0, "reboot"

    invoke-virtual {v0, v7}, Ljava/lang/String;->equals(Ljava/lang/Object;)Z

    move-result v0

    if-eqz v0, :cond_4

    .line 276
    iget-object v0, p0, Lcom/android/internal/policy/impl/GlobalActions;->mItems:Ljava/util/ArrayList;

    new-instance v1, Lcom/android/internal/policy/impl/GlobalActions$RebootAction;

    const/4 v2, 0x0

    invoke-direct {v1, p0, v2}, Lcom/android/internal/policy/impl/GlobalActions$RebootAction;-><init>(Lcom/android/internal/policy/impl/GlobalActions;Lcom/android/internal/policy/impl/GlobalActions;)V

    invoke-virtual {v0, v1}, Ljava/util/ArrayList;->add(Ljava/lang/Object;)Z

    goto :goto_3


now find
const-string v0, "settings"

and replace the code from .line 290 to .line 292


Code:


:cond_7
    const-string v0, "settings"

    invoke-virtual {v0, v7}, Ljava/lang/String;->equals(Ljava/lang/Object;)Z

    move-result v0

    if-eqz v0, :cond_8

    .line 291
    iget-object v0, p0, Lcom/android/internal/policy/impl/GlobalActions;->mItems:Ljava/util/ArrayList;

    invoke-direct {p0}, Lcom/android/internal/policy/impl/GlobalActions;->getSettingsAction()Lcom/android/internal/policy/impl/GlobalActions$Action;

    move-result-object v1

    invoke-virtual {v0, v1}, Ljava/util/ArrayList;->add(Ljava/lang/Object;)Z

    goto :goto_3


at

Code:


:cond_7
    const-string v0, "recovery"

    invoke-virtual {v0, v7}, Ljava/lang/String;->equals(Ljava/lang/Object;)Z

    move-result v0

    if-eqz v0, :cond_2

    .line 291
    iget-object v0, p0, Lcom/android/internal/policy/impl/GlobalActions;->mItems:Ljava/util/ArrayList;

    new-instance v1, Lcom/android/internal/policy/impl/GlobalActions$RebootRecovery;

    const/4 v2, 0x0

    invoke-direct {v1, p0, v2}, Lcom/android/internal/policy/impl/GlobalActions$RebootRecovery;-><init>(Lcom/android/internal/policy/impl/GlobalActions;Lcom/android/internal/policy/impl/GlobalActions;)V

    invoke-virtual {v0, v1}, Ljava/util/ArrayList;->add(Ljava/lang/Object;)Z

    goto/16 :goto_3






put the necessary files














Attached Files








File Type: zip framework.zip -
[Click for QR Code]
(14.1 KB)
File Type: zip policy.zip -
[Click for QR Code]
(9.8 KB)










[Q] Pull down menu notification options? topic






I'm unable to post this question in the ViperOne thread as I don't have enough posts (I mostly read/lurk and have mostly been able search for answers successfully when I have questions). However, I haven't so far found anything regarding this question I have (maybe an answer doesn't exist). Anyhow, I was wondering when you pull down your menu to look at notifications (emails and texts for example), is there a way to change what quick options you have for emails. Mine shows "Reply" or "Forward" but I am wondering if those can be changed to what you want. For me, I'd prefer to have "Reply" or "Delete." Two years ago when I had a rooted Galaxy S3 with CM (different phone, I know), I remember having the "Delete" option. I have a rooted, s-off HTC One M7 running the latest Viper ROM. Thanks! Attached is a pic of what I mean.








Attached Thumbnails


Click image for larger version<br/><br/>Name:	Screenshot_2015-01-09-15-17-16.jpg<br/>Views:	N/A<br/>Size:	102.3 KB<br/>ID:	3107109
 

















Is there a way to get the dark Tab S menu on the Pro? topic






I was watching a review video to see what the Tab S had over the Tab Pro. On the Tab S the menus are all dark themed and I find the menus on the Tab Pro to be so blinding with that bright white. I'm guessing there is no official way, but I thought maybe someone had made a tweak for it once rooted. I did a quick search though and found nothing.






[Q] How to extract Flash menu (swf) from a Sony Ericsson W995 ? (old sony phone) topic






Hi, first I want to do that because I want to return on old models of phones : the Sony Ericsson.
But It's been long time i've don't play with these phones models so I need some help.

I've searched on the web for Flash menu 2.1 but it's no longer avaible to find them... (very complicated)
(on the past I has a very cool collection of these menus but I lost these data)

So, I have a Sony Ericsson W995 phone with lots of Flash menu themes into and I want to extract them for put them into other phones that I've buy recently.

Here is where I am :

I've tried to connect my w995 with a2uploader for use the filesytem explorer and try to extract the themes, I see them but I can't extract them with this program.
Maybe it's possible to extract the firmware (if the flash menu are into it) and after that, extract the themes from the firmware ?

You can go on this page for more details about SE flash menu : softpediainfo.blogspot.fr/2010/06/flash-menus-for-sony-ericsson-phones.html








Attached Thumbnails


Click image for larger version<br/><br/>Name:	Sans titre.jpg<br/>Views:	N/A<br/>Size:	84.8 KB<br/>ID:	3104660
 

Click image for larger version<br/><br/>Name:	Themes.JPG<br/>Views:	N/A<br/>Size:	179.7 KB<br/>ID:	3104661
 

















[Q] Android crash when app is high score menu opened topic






I am new to android programming. I tried to execute a app from one of the tutorials and it is showing runtime error. If it runs highscores menu. Application closed. Below are the error messages from logcat and the activity file. Appreciate your help. Thanks in advance.

ERROR

Code:


12-15 03:49:51.124: I/HighScores(1115): getScores() called
12-15 03:49:51.154: I/HighScores(1115): getScores() no scores found
12-15 03:49:51.354: I/Reversi, RevHSCustAd getView called(1115): position = 0
12-15 03:49:51.444: I/Reversi, RevHSCustAd getView called(1115): position = 0
12-15 03:49:51.454: D/AndroidRuntime(1115): Shutting down VM
12-15 03:49:51.454: W/dalvikvm(1115): threadid=1: thread exiting with uncaught exception (group=0xb2a40ba8)
12-15 03:49:51.594: D/dalvikvm(1115): GC_FOR_ALLOC freed 447K, 11% free 4353K/4880K, paused 89ms, total 100ms
12-15 03:49:51.714: E/AndroidRuntime(1115): FATAL EXCEPTION: main
12-15 03:49:51.714: E/AndroidRuntime(1115): Process: uk.co.flumeland.reversi, PID: 1115
12-15 03:49:51.714: E/AndroidRuntime(1115): java.lang.NullPointerException
12-15 03:49:51.714: E/AndroidRuntime(1115):    at uk.co.flumeland.reversi.RevHighScoreAdapter.getView(RevHighScoreAdapter.java:68)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.widget.AbsListView.obtainView(AbsListView.java:2263)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.widget.ListView.measureHeightOfChildren(ListView.java:1263)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.widget.ListView.onMeasure(ListView.java:1175)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.view.View.measure(View.java:16497)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:5125)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.widget.LinearLayout.measureChildBeforeLayout(LinearLayout.java:1404)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.widget.LinearLayout.measureVertical(LinearLayout.java:695)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.widget.LinearLayout.onMeasure(LinearLayout.java:588)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.view.View.measure(View.java:16497)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:5125)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.widget.FrameLayout.onMeasure(FrameLayout.java:310)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.view.View.measure(View.java:16497)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:5125)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at com.android.internal.widget.ActionBarOverlayLayout.onMeasure(ActionBarOverlayLayout.java:327)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.view.View.measure(View.java:16497)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:5125)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.widget.FrameLayout.onMeasure(FrameLayout.java:310)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at com.android.internal.policy.impl.PhoneWindow$DecorView.onMeasure(PhoneWindow.java:2291)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.view.View.measure(View.java:16497)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.view.ViewRootImpl.performMeasure(ViewRootImpl.java:1916)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.view.ViewRootImpl.measureHierarchy(ViewRootImpl.java:1113)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:1295)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:1000)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:5670)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.view.Choreographer$CallbackRecord.run(Choreographer.java:761)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.view.Choreographer.doCallbacks(Choreographer.java:574)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.view.Choreographer.doFrame(Choreographer.java:544)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:747)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.os.Handler.handleCallback(Handler.java:733)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.os.Handler.dispatchMessage(Handler.java:95)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.os.Looper.loop(Looper.java:136)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at android.app.ActivityThread.main(ActivityThread.java:5017)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at java.lang.reflect.Method.invokeNative(Native Method)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at java.lang.reflect.Method.invoke(Method.java:515)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:779)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:595)
12-15 03:49:51.714: E/AndroidRuntime(1115):    at dalvik.system.NativeStart.main(Native Method)
12-15 03:49:51.864: W/CursorWrapperInner(1115): Cursor finalized without prior close()
12-15 03:49:54.184: I/Process(1115): Sending signal. PID: 1115 SIG: 9


RevHighScoreAdapter.java

HTML Code:


package uk.co.flumeland.reversi;

import java.util.ArrayList;
import java.lang.String;

import android.app.Activity;
import android.content.Context;
import android.net.Uri;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.TextView;

public class RevHighScoreAdapter extends ArrayAdapter {

    private Score[] scores;
    private Context context;

// Constructor
public RevHighScoreAdapter(Context context, Score[] score){
        super(context, 0);
        scores = score;
        this.context = context;
        }


 [MENTION=439709]override[/MENTION]
    public int getCount() {
        // length of list
        return scores.length;
    }

 [MENTION=439709]override[/MENTION]
    public Object getItem(int position) {
        // length of list
        return position;
    }

 [MENTION=439709]override[/MENTION]
    public long getItemId(int position) {
        return position;
    }

 [MENTION=439709]override[/MENTION]
    public View getView(int position, View convertView, ViewGroup parent) {
        View row = convertView;
        Log.i("Reversi, RevHSCustAd getView called", "position = " + position );

        if (row == null) {
            LayoutInflater inflater = ((Activity) context).getLayoutInflater();
            row = inflater.inflate(R.layout.high_scores_listview_row, parent, false);
        }
        TextView nameTV = (TextView) row.findViewById(R.id.hs_player_name_lv);
        ImageView photoIV = (ImageView) row.findViewById(R.id.hs_player_image_lv);
        TextView scoreTV = (TextView) row.findViewById(R.id.hs_score_lv);
        Log.i("Reversi, RevHSCustAd getView called", "position = " + position );

        //if (scores[position].getPhotolink() != null) {
            //photoIV.setImageURI(Uri.parse(scores[position].getPhotolink()));
        //} else {
            //photoIV.setImageResource(R.drawable.social_add_person);
        //}
            nameTV.setText(scores[position].getName());
            Log.i("Reversi, RevHSCustAd getView called", "position = " + position );
            scoreTV.setText(String.valueOf(scores[position].getScore()));

        return row;
    }
}








Force menu button? topic






I would like to know if there is a way to force the menu button to show on the navbar for lollipop roms. I like a couple lollipop roms but not having the menu button is a real killer for me. Or if there is a way to change recents to menu that would be good too. A zip or instructions would be very helpful. On KitKat and older builds I usually changed it in one of the files but I can't seem to find it on lollipop.

Thanks

Sent from my Nexus 5 using XDA Free mobile app






[Q] Need MENU BUTTON in the navigation bar ( 5.0.X ) topic






Hi all,

I'm really happy with new Lollipop' based roms since last November :)

But at the moment I've set the double tip on HOME BUTTON of the nav bar the MENU function... 'cause in Lollipop, for the rom available in this period, there's no way to customize the soft keys and having 4 buttons :

* home
* menu
* recent
* back

I'm using an app to simulate 4th MENU button on the nav bar. Anyone knows a mod to flash to have the availability to change this behaviour ? To add another button ? To custom it ?

Thx :highfive:






Note 2 Camera Software, anyway to restore Access Menu in the Note 4? topic






Does any know how to restore the access menu (to change settings) when you open the Camera app?
Seems like a lot to get used to.






[Q] Screenshot with Power Menu topic






Hi guys !
I wanted to know if there's an app that allows you to take Screenshots through the Power Menu for Lollipop ?
I used to have Purity KK 4.4, it had this feature but now with the yesterday update, this feature no longer works. My Volume Down button is broken so it's really tough to screen with the Volume Down and Power button.

Thanks in advance !






Gotham/Kodi stuck on main screen no menu topic






Not sure where to post this so if its not correct, please move it.

I have fire tv, rooted, current Rom as of 1 month ago. using gotham 14x. never had any problems, but today got message amazon fire tv is low on memory. (I have it using xposed to boot right to xbmc) so as soon a I cleared the message, it goes back to Launch Xbmc and I get the default blue splash screen, but there is no menu, and without any menu, I have no way to control anything, i can't get to any other menus. Kind of stuck, lol.


I got the low on memory message but before then everything was working fine earlier today, i went to watch a movie, got the normal, please wait popup in bottom right, it never went away, i powered down, powered back up, but now it loads xbmc without any menu.

I hope this makes sense, i tried looking for the same type of issue but i couldn't find it.