<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Show Android Menu button on tablet in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Show-Android-Menu-button-on-tablet/m-p/1080634#M61435</link>
    <description>&lt;P&gt;My phone has physical Menu button and I can capture event with Intel XDK, but on my tablet Asus Memopad 7 by default Menu button is hidden, how I can display it on bottom of screen ?&lt;/P&gt;</description>
    <pubDate>Tue, 24 Nov 2015 02:43:06 GMT</pubDate>
    <dc:creator>Yu_B_2</dc:creator>
    <dc:date>2015-11-24T02:43:06Z</dc:date>
    <item>
      <title>Show Android Menu button on tablet</title>
      <link>https://community.intel.com/t5/Software-Archive/Show-Android-Menu-button-on-tablet/m-p/1080634#M61435</link>
      <description>&lt;P&gt;My phone has physical Menu button and I can capture event with Intel XDK, but on my tablet Asus Memopad 7 by default Menu button is hidden, how I can display it on bottom of screen ?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Nov 2015 02:43:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Show-Android-Menu-button-on-tablet/m-p/1080634#M61435</guid>
      <dc:creator>Yu_B_2</dc:creator>
      <dc:date>2015-11-24T02:43:06Z</dc:date>
    </item>
    <item>
      <title>I'm not 100% clear what you</title>
      <link>https://community.intel.com/t5/Software-Archive/Show-Android-Menu-button-on-tablet/m-p/1080635#M61436</link>
      <description>&lt;P&gt;I'm not 100% clear what you mean by hidden, I'm guessing that the app is running "full screen" so that you cannot see the back, home and recent apps buttons? If that is the case, you need to swipe your finger up from the bottom or down from the top to reveal those items. In Android tablets (and some newer phones) the "hard menu" button is gone, newer Android devices and tablets use "soft menu" buttons.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Nov 2015 15:18:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Show-Android-Menu-button-on-tablet/m-p/1080635#M61436</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2015-11-24T15:18:24Z</dc:date>
    </item>
    <item>
      <title>My phone (Sony Ericsson</title>
      <link>https://community.intel.com/t5/Software-Archive/Show-Android-Menu-button-on-tablet/m-p/1080636#M61437</link>
      <description>&lt;P&gt;&lt;SPAN style="color: rgb(34, 34, 34); font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-size: 13px; line-height: 16.9px;"&gt;My phone (Sony Ericsson Xperia Arc S, Android 4.0.4) has 3 hardware physical keys: "Back", "Home" and "Menu". I successfully can capture events of pressing "Back" or "Menu" using Intel XDK: &lt;/SPAN&gt;&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;&lt;SPAN style="color: rgb(34, 34, 34); font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-size: 13px; line-height: 16.9px;"&gt;document.addEventListener("menubutton", onMenuKeyDown, false); &lt;/SPAN&gt;&lt;/P&gt;

	&lt;P&gt;&lt;SPAN style="color: rgb(34, 34, 34); font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-size: 13px; line-height: 16.9px;"&gt;document.addEventListener("backbutton", backBtn, false);&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;&lt;SPAN style="color: rgb(34, 34, 34); font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-size: 13px; line-height: 16.9px;"&gt;All works perfect on my phone,&amp;nbsp;but my tablet (Asus MemoPad 7 ME173X, Android 4.2.2) has no hardware physical buttons, it displays on bottom of touchscreen (action bar) by default 3 buttons: "Back", "Home" and "Task manager", and sometime it shows "Menu" button (Overflow menu) at right bottom corner, possible when current app requested this button. The event listener of my app works, but "Menu" (or Overflow) button is not shown on Android's action bar at bottom of screen.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;I installed "Cordova-Mega-Demo" (year 2013) from Google Play (&amp;nbsp;https://play.google.com/store/apps/details?id=au.com.redata.android.demo ) , it demonstrates Menu-button capture and it displays this button on my tablet, all works fine, but I dont know how. This demo contains these lines at end of AndroidManifest.xml:&amp;nbsp;&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;&amp;lt;application&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; android:icon="@drawable/icon"&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; android:label="@string/app_name" &amp;gt;&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;activity android:name=".CordovaAndroidActivity"&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;android:configChanges="orientation|keyboardHidden|keyboard|screenLayout|locale" &amp;gt;&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;intent-filter&amp;gt;&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;action android:name="android.intent.action.MAIN" /&amp;gt;&lt;/P&gt;

	&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;category android:name="android.intent.category.LAUNCHER" /&amp;gt;&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/intent-filter&amp;gt;&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/activity&amp;gt;&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;lt;/application&amp;gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Do you think &amp;nbsp;that if I add these lines to my app then Menu button will be displayed ?&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thank you !&lt;/P&gt;</description>
      <pubDate>Sun, 29 Nov 2015 07:45:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Show-Android-Menu-button-on-tablet/m-p/1080636#M61437</guid>
      <dc:creator>Yu_B_2</dc:creator>
      <dc:date>2015-11-29T07:45:05Z</dc:date>
    </item>
    <item>
      <title>When using the older Sony</title>
      <link>https://community.intel.com/t5/Software-Archive/Show-Android-Menu-button-on-tablet/m-p/1080637#M61438</link>
      <description>&lt;P&gt;When using the older Sony device, with Android 4.0, do you actually see anything in the menu button when you press it in an app that you've built? Typically, Cordova apps don't populate that menu with anything useful. On the newer device, unless you've got a list of menu items, there isn't going to be an overflow menu, so there won't be anything on which to capture events...&lt;/P&gt;</description>
      <pubDate>Mon, 30 Nov 2015 19:53:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Show-Android-Menu-button-on-tablet/m-p/1080637#M61438</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2015-11-30T19:53:07Z</dc:date>
    </item>
    <item>
      <title>In my code I have alert("menu</title>
      <link>https://community.intel.com/t5/Software-Archive/Show-Android-Menu-button-on-tablet/m-p/1080638#M61439</link>
      <description>&lt;P&gt;In my code I have &lt;EM&gt;alert("menu pressed")&lt;/EM&gt; in event listener and it works.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Dec 2015 10:01:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Show-Android-Menu-button-on-tablet/m-p/1080638#M61439</guid>
      <dc:creator>Yu_B_2</dc:creator>
      <dc:date>2015-12-01T10:01:14Z</dc:date>
    </item>
  </channel>
</rss>

