Android : Want Access To Droid Device Menu In Robotium Framework?

Nov 21, 2010

I would like to know is there any way to access to Android menu with help of Robotium framework ? (http://code.google.com/p/robotium/) This used in Android test applications. This is very powerful framework! You just include it in your test application source code. I can't found any way to access to Android device menu .. I want to programmatically select GPS activation line from menu ... Is it possible with Robotium ?

Android : Want Access to droid device menu in Robotium framework?


Android :: Mobile 'Web Wrapper' Framework Allowing Device Access To A Remote Site?

Jan 3, 2010

When I first ran across PhoneGap, I was excited because I envisioned simply dropping in the URL of a mobile site and simply updating the mobile site to use the devices capabilities when available.

Alas, it seems it is not that easy.

From what I understand (and I could be incorrect), any HTML/JS access to the device's hardware is limited to local 'pages'. So essentially create a HTML/JS local 'web' app to access the 'real' mobile web app by AJAX like calls. It seems a little redundant (at least to me) when the point is to simply extend the interface an existing mobile site.

Not trying to knock PhoneGap here, just wondering if there's a similar framework that allows a remote site to access the phone's hardware directly. Or if I've missed how that can be done with PhoneGap.

(Sure, I know "allows a remote site to access the phone's hardware directly" sounds scary - but the URL is hard-coded in the app, and HTTPS could provide authenticity. Of course, security is probably why this isn't supported by PhoneGap.)

View 2 Replies View Related

Sprint HTC Hero :: Xvid/.avi Container Get API Access Of Android Framework?

May 25, 2010

Android is 'open'. Yet google doesn't provide codec support to the de facto mpeg4 container of the last 6-7 years? How is it that my antiquated WinMo 5 SDA can play back xvid, and my new smartphone can't? Microsoft does, yet their handsets can play xvid. Fudge converting to mp4/aac. imo.

View 3 Replies View Related

General :: How To Port Framework Of One Device To Another

May 7, 2012

I wanna port Samsung's framework to HTC....

View 5 Replies View Related

General :: Uninstalled Google Service Framework - No Access To Play Store

May 1, 2014

While installiing "google play services" I got some error 919 "Incompatible with other applications(s) using the same shared user ID", for which i googled for solutions which said to uninstall Google service framework(GSF) then, install play services and then again install GSF.

when i tried to uninstall the GSF via "titanium backup" i was unable to do so. Hence i thought of converting it to an user app ,then take a backup of apk file and then uninstall it. While doing so, it was taking very much time, so i rebooted my phone, after which i did not found GSF in my apps list.

Now i'm not able to have an access to play store.

My GSF version was 4.0.1- 212031

View 3 Replies View Related

Android :: Which Folders Can Safely Access In A Droid Device

Jan 15, 2010

I know that we can safely write to /data/data/app_package... however, can the application also create folders and maybe access other folders as well, such as system? I could easily create an application to test that, but what i really want to know if the official Android approach to this issue. I don't want to assume something that will be changed in the future.

View 4 Replies View Related

Android :: Unique Droid Device ID / Access It Via Java?

May 7, 2010

Do Android devices have a unique id, and if so, what is a simple way to access it via Java?

View 3 Replies View Related

Android :: Instrumentation Testing Called Robotium

Feb 22, 2010

I found a tool for Instrumentation Testing called Robotium.It is easy and simple for black box testing of android applications.
We can use it as follows:

CODE:........

How can we use it for webviews and listviews etc.

View 4 Replies View Related

Android :: Synchronization In Robotium - Setting Timeout Manually

Jun 16, 2010

How long does robotium wait for a new activity to show up? Is it possible to set the timeout manually for the Solo instance?

View 1 Replies View Related

Motorola Droid :: Minimum Required For Root Access - Any Device

Aug 11, 2010

All this talk about different rooting methods and how some are unreliable makes me want to learn exactly what's required.

So far from looking at different exploits and methods to root different phones, the most simplest to understand is Peter Alfonso's Galaxy S rooting method posted today it seems all you need is to find a way on your device to install the following:

/system/bin/su (is this included in stock and replaced or just doesn't exist in stock systems?)
/system/app/Superuser.apk (it seems the Android OS has a "super user access" intent that this listens for -- so when apps try to access su this picks app it up?)

View 8 Replies View Related

Motorola Droid : No SetCPU - Non Root Access To Device Correct?

Mar 16, 2010

I have a probably silly and stupid question. I did the sbf file to bring my phone back to stock (I have to give my phone to a family member, long story). Anyway, when I did the sbf file it recovered all my apps, and one of them was SetCPU.

SetCPU won't run unless it has root access correct? I mean the fact that it was installed (and then uninstalled) it can't change anything without root access to the device correct?

View 4 Replies View Related

Android :: Simulate A Date Picker With Robotium Solo Class?

Jun 24, 2010

I'm trying to test a date picker scenario on android. I have the date picker which comes up when I click a text view(with id say v) which has a label on it along with a hint "Enter Date".

The problem is that I'm trying to simulate this clicking of the text view and then selecting of the date from the date picker dialog. I cannot find an method call/option in Solo to get hold of the text view (ex:with id say x).
I've been trying to figure it out for the past three days.

Can anyone suggest me a way to go about it?.

View 2 Replies View Related

Android :: How To Access An Activites Menu Programatically

Aug 18, 2009

I'm writing unit tests in a class derived from ActivityInstrumentationTestCase2. I know I can access anything defined in the applications XML using findViewById(), but this application defines its Menu programmatically. I'm trying to access that menu so I can fire click() events to it in my tests the same way I'm doing with Button Views etc.

To illustrate, this works fine and shows I can control/test various Views:

CODE:...................

View 3 Replies View Related

Android : 1024x600 Emulator / No Access To 'menu' - Other Buttons?

Sep 2, 2010

We are building an app for a device that will have a 1024x600 screen at API level 7, 160dpi (which, by the way, is going to be very popular very shortly with the Samsung Tab and other tablets coming on the market). When we start the emulator, the touch surface takes up the entire window, and we no longer see the emulator keyboard, hard buttons, or (most importantly) the menu button on the right. The emulator's window does not scale, so it is not simply a matter of making the emulator window larger, unfortunately.

Does anyone have a suggestion on how to get these very important buttons to appear in the emulator?

View 5 Replies View Related

Android :: How Do I Write Solo / Robotium Test Case / Uses Built-in Camera To Take Picture ?

Oct 1, 2010

From my activity I do startActivityForResult(MediaStore.ACTION_IMAGE_CAPTURE),and then I land in the builtin camera activity (in this case in the emulator).in my testcase, it does not find ANY button (null is found for index=0).How do I write a Solo/Robotium testcase that uses the builtin camera to take a picture ?

View 1 Replies View Related

General :: No Way To Access Recovery Menu In Android China Tablet?

Nov 2, 2013

My Quest tablet is accidentally locked yesterday it asking for gmail and password but i forgot the gmail id and password.So after a long search i found lots of things such as unlocking tablet pattern lock,gmail lock,pin lock etc.These topics only be successfull only when the tablet is in recovery mode.So i tried to put my tablet into recovery mode by pressing vol + and power button.But there appears a android bot lying with red traiangle exlamation.So i simply tried to access recovery menu by pressing power and the vol + .But nothing happens neither than a dead android bot lying down with a red traiangle.

View 6 Replies View Related

Android :: Ddroid Device Has A Menu And Back Button?

Nov 11, 2010

Kind of new to Android, and definitely don't know too much about the devices. I was wondering whether every android device out there has a menu and back button? I just wanna make sure we could assume this as a fact...

View 3 Replies View Related

No Standard Menu Button In 3.0+ / How To Get Access To It

Oct 12, 2012

I made my app compatible with both pre and post 3.0. Before 3.0 most phones had menu buttons which led to settings or other menu options. Since 3.0+ the dev guide has depreciated the menu button so phones don't need it. ICS and JB don't use them.

So how do I let users access it? In Gingerbread a user can press the menu button and then select the "Settings" link. Everyone knows what I mean but I feel I need to explain it: here's the dev guide anyway.

So if one of my users is on a 3.0+ device how can I let them get access to the settings page? I don't want to use the Action Bar like the dev guide suggests. That's a huge UI change just for one settings page.

I mean it's just one page and changing my UI to add a settings imageview would change the overall layout of main.xml which at the moment is just how i want it.

View 2 Replies View Related

HTC Incredible :: Change To Hybrid Prl / Access Inc's Service Menu?

May 12, 2010

I'm having crappy reception (like most people) with -100db reception so I was wondering if I might try hybrid prl to see if that helps. Can I make the change to hybrid or do I have call or go to a vzw store?

Also, how do I access the Inc's service menu?

View 24 Replies View Related

General :: Can't Access Recovery Menu (black Screen)

Jan 18, 2014

I recently bought a Chinese Mediatek 'pbablet' phone/tablet combination; running Android 4.2.2 Model: MTK6572. Due to it being cheap, it was ideal so I thought, for flashing and development, however I maybe wrong.

However I cannot get it into recovery mode. It won't display the menu when holding down volume + and the power button when powering on.

When pressing these two buttons together on start-up, it actually remains a black screen, and it won't turn on after doing this, and I have to keep pressing the tiny reset button on the side of this device every time I attempt to enter recovery, to get it to turn on as normal again.

Pressing and holding volume - and power at the same time on start-up brings up "Factory mode" (in Chinese) and has no options available for flashing/ROM/ functions, except 'testing' the devices' hardware. This phone doesn't have any other physical buttons except power, volume + and -

I am able to successfully enter CWR by flashing it with MTKDroidTools and rebooting into the recovery mode (while powered up and in the android OS) however I still cannot get into CWR or any recovery mode at all while powering up with power and volume +

I just want to be able to enter a recovery mode on this device, to ensure no future issues and doubts upon the unfortunate events of a permanent brick. My idea is to flash this phablet with ParanoidAndroid; or cyanogenmod, and I could try doing this with a software reset, but then what if the ROM is incompatible, and totally bricks it? Then I have no way in hell to revive and reflash, because I can't access the recovery mode anyway.

I have came to the conclusion that it maybe due to the filesystem, potentially due to it's fbifs, that is the cause to no recovery mode, but what if it's ext4, does any of this make a difference.

Is there any way to make this device open the recovery menu while powering it on?

When I attempt to enter recovery mode while powering up with volume +, the device is basically a brick, until I press reset. It doesn't respond at all. The only way to enter recovery menu is by booting into android resetting the device into recovery mode via an app.

Device Info -
Hardware : MT6572
Model : MT6572
Build number : ALPS.JB3.MP.V2.0
Build date UTC : 20131104-123514
Android v : 4.2.2
Baseband v: MOLY.WR8.W1315.MD.WG.MP.V1, 2013/09/18 03:24
Kernel v : 3.4.5 (breaze@urbetter-Linux6) (gcc version 4.6.x-google 20120106 (prerelease) (GCC) ) #10 SMP Thu Dec 19 09:40:47 CST 2013
Uboot build v : -----
LCD Driver IC : 1-hsd070idw1

Scatter eMMC -

[Code] ......

View 6 Replies View Related

General :: ZTE Staraddict Hard Reset - Can't Access Menu?

Oct 23, 2011

I have a ZTE/SFR Staraddict and it is locked to the google account request and i can't access to the menu. How can i do to reset it.

View 9 Replies View Related

Android :: Way To Access Serial Device On G1?

Jul 1, 2009

I want to interface my serial device on TMobile G1 Phone I want to know if there is a possibility to use a usb to serial converter or Blue tooth as a comm port to interface to my serial device.

View 2 Replies View Related

HTC Hero :: Hold Home Button To Access Shortcut Menu

Oct 17, 2009

If you press and hold the 'home' button for a second or two it brings up a list of your most used (I think) apps.

View 12 Replies View Related

Android :: Access To Cloud To Device Messaging ?

Jul 26, 2010

i dont know Google hate me but they didn't give me access to Google Wave back then and now also they didnt give me access to CtDM, is there any way to start developing and working with the framework without getting access from Google ?

View 2 Replies View Related

Android :: Cannot Access The Internet While Debug On Device

Oct 5, 2010

I'm trying to develop an android application that uses network connection. The server is up and running, but when i am trying to access it from the device that runs the android app (in debug mode-using eclipse) it outputs a message that 'cannot find the server' after a UnknownHostException occurs! I have tested the server with a java application and it works fine! What is the problem then with the device?

View 1 Replies View Related

Android :: How To Access Device Contact Book From Application?

May 21, 2010

I want to access the contact book from my application. How to go about it.

View 2 Replies View Related

Android :: Unique Device Id - How Many Digit It Has / Access That Through Program?

Aug 11, 2010

Is there any unique id on Android Mobile?? If it is then how many digit it has?
How can I access that through my program?

View 2 Replies View Related

General :: IPv6 Access From Host To Android Device?

Jan 1, 2012

I'm trying to connect from a host (PC or other) to a mobile cellular Android device on the Verizon/AT&T cellular network. This device uses only the 3G network and has its Wi-Fi turned off. The Android device has a listening socket and I need the remote host to be the connection initiator. As far as I know, Verizon/AT&T uses NAT traversal for mobile phones and assigns local IP addresses to them on the cellular network. This prevents me from initiating a connection to the device from a remote host.

With the usage of IPv6 assignments there shouldn't be any practical limitation (virtually unlimited) to the number of "real" IPs that can be assigned.Therefore my questions are:

1. Does the Verizon/AT&T cellular network support IPv6 and assigns IPv6 addresses to capable Android devices?

2. Does Android 2.2+ have enough support for IPv6 to implement such solution?

I am aware of other methods that can be used, such as C2DM, but it has some drawbacks (such as unknown response time) that prevent me from using it.

View 1 Replies View Related

General :: TCP / IP Access To Windows 7 PC From Android Device Using USB Cable

Aug 14, 2013

Is it possible to have a TCP/IP access to Windows 7 PC from Android device (create a LAN between them) using just direct connection via USB cable, without wifi or bluetooth? I already have it working using wifi, but I am also interested in just USB cable way.

I do _not_ need to use PC's internet connection, I only want to access the PC itself. I want to access HTTP/FTP/SSH servers on the PC and its samba (Windows Network) shares via Android CifsManager app.

Is this possible using "reverse tethering" solution which is used to access PC's internet connectivity on Android device and uses some 3rd party app? Is there a simpler solution without using 3rd party apps? Is this possible somehow via adb?

My Android device uses Android 4.0.3 and is rooted. My Windows version is Windows 7 64-bit.

View 1 Replies View Related

General :: Acer A100 - Device Doesn't Have Hardware Menu Button?

Apr 13, 2012

I've installed several apps that are supposed to have features that I can't even find. For example, I installed "Writer". This is supposed to have text formatting features (bold, italic, font size). But, after highlighting some text, I can't find anything that triggers a "Format" menu. A long tap on selected text will bring up a Cut & Paste menu. But if there's a Format menu, I haven't found it, yet.

I'm using Writer as an example, but I've tried half a dozen apps now that are listed as having certain features. Sometimes the program menu is the little checkerboard icon next to the Honeycomb task switcher at the bottom of the screen, but on many apps this menu is empty of anything useful. Some programs have an icon on the top of the screen that triggers a menu, but on others I've tapped on everything I can find and found no extra controls.

Is there some common screen gesture that I haven't discovered yet? Are developers listing future features that don't exist yet? Did Gingerbread have some context menu feature that's missing in Honeycomb? And is there some reason developers don't bother to provide a paragraph or two explaining how to use their product?

btw - I have an Acer A100 7 inch tablet, running generic Honeycomb 3.2 and downloading apps from GooglePlay. My device doesn't have a hardware Menu button, maybe that's the problem?

View 5 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved