[android-developers] Android with Dreamweaver

2012-07-10 Thread Addy
Hi there,

I build an application in dreamweaver cs6 with the help of phonegap, it 
gives me the apk file but when im trying to upload this .apk file on google 
play it gives me the following error.

Google Play does not accept apks signed with the debug certificate. Create 
a new certificate that is valid for at least 50 years

Please help me out to solve this issue as im a new android developer.

Thanks

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] why process give null inputstream in test runner class?

2011-10-05 Thread Addy
Hi All,

In my android test project, I am imply read the logcat using adb
command like,

public StringBuilder log=new StringBuilder();
public String line=;
public String temp=;

public void testSolo() throws Exception {

 String baseCommand = logcat -v time;
baseCommand +=  ActivityManager:I ; // Info for my app
baseCommand +=  *:S ; // Silence others

try {
Process logReaderProcess = 
Runtime.getRuntime().exec(baseCommand);
 BufferedReader bufferedReader = new 
BufferedReader(
   new 
InputStreamReader(logReaderProcess.getInputStream()));

while ((line =
bufferedReader.readLine()) != null) {
log.append(line);
}

}
catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}

}

but, here in string line I always get null value,

while the same thing always run in the android activity's onCreate() .
I don't understand why this happen?

Same thing runs in activity class and not in the android test project.

I also add use -permission for READ_LOGS and WRITE_EXTERNAL_STORAGE in
manifest.xml file.

Is there anybody knows how it works or what happens?

Thanks in advance.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Accessing View component from parent view

2011-09-26 Thread Addy
Hi All,

Now, from the same concept of accessing user interface with device, I
have some another idea, After resigning native application with new
key for rooted device and if we access the Activity context of the
native application, I am able to get the view of that application's
and child of that parent view, Now I want to know then how can I used
that concept for making a android application for my rooted device
which will get the native application's (resigning with new key)
view's and its child view's click event.

Hope I am not going wrong. Please guide me if I am. Thanks in advance.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] how to get child or any component from the parent view

2011-09-23 Thread Addy
Hi All,

Currently for my Android's Application testing purpose, I got the view
of the device screen then I want to fetch the child of that parent
view. e.g. If I am fetching the main home screen so then can I get the
menu like setting, browser, etc.?

Thanks in Advance.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: how to get child or any component from the parent view

2011-09-23 Thread Addy
Thanks for your reply,

I want to track the event of user interecation so I think, If I am
able to get the device's screen as a view then I will get the child
views of that view. And from that child view I will get the all events
which will perform on that view.

Or if this is impossible (As we don't have a root access of device for
security resoan) so is their any alternate way from which I am able to
get the user event on device, Currently from logcats I m just getting
the Application name (when it Launching) but after that I didnt get
any event (If user click any sub menu or any wherre on that
application's screen, beco'z in adb their dont have any entry for that
event ). This all things are for my testing application.

Thanks all for your support.

On Sep 23, 9:41 pm, TreKing treking...@gmail.com wrote:
 On Fri, Sep 23, 2011 at 6:16 AM, Addy joyy.bl...@gmail.com wrote:
  Currently for my Android's Application testing purpose, I got the view
  of the device screen then I want to fetch the child of that parent
  view. e.g. If I am fetching the main home screen so then can I get the
  menu like setting, browser, etc.?

 Your question does not make much sense. What are you trying to do? Setting
 and Browser are their own apps, not screens of anything.

 ---­--
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: how to get child or any component from the parent view

2011-09-23 Thread Addy
OK, Thanks. I got it.
And one more thing, do you know how does ROBOTTIUM jar work for
testing android application?
I think it also do same, as get the screen view, from that screen It
get the perticulat x,y coordinates where user touch then from that
portion it will get the text.And from that text it will use in for
testing play on device.

So, They also achieve something similar to it, without any root access
and modification of firmware.



On Sep 23, 11:19 pm, TreKing treking...@gmail.com wrote:
 On Fri, Sep 23, 2011 at 12:45 PM, Addy joyy.bl...@gmail.com wrote:
  I want to track the event of user interecation so I think, If I am able to
  get the device's screen as a view then I will get the child views of that
  view. And from that child view I will get the all events which will perform
  on that view.

 That's not how it works.

  Or if this is impossible (As we don't have a root access of device
  for security resoan)

 Pretty much.

  This all things are for my testing application.

 You are welcome to track anything within your own app. Why you would need to
 track the user's action within other apps, I'm not sure, but is certainly
 not something you're going to be able to do with the SDK.

 ---­--
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: how to get child or any component from the parent view

2011-09-23 Thread Addy
Ok, Thank you very much.

On Sep 23, 11:58 pm, TreKing treking...@gmail.com wrote:
 On Fri, Sep 23, 2011 at 1:46 PM, Addy joyy.bl...@gmail.com wrote:
  And one more thing, do you know how does ROBOTTIUM jar work for testing
  android application?

 Nope. Check their site?

 ---­--
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] how to get sequence of user interaction with android device?

2011-09-22 Thread Addy
I just want to capture the sequence of user interaction on android
device. Starting from when the device is powered ON. And one more
thing is that I am not talking about the user event on UI of any
application. Its for whole device UI interaction. And if any tools are
available then please let me know about it. I didn't get anything
about this. Any help or suggestion is well appreciate.


Thanks.
Addy

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: how to get sequence of user interaction with android device?

2011-09-22 Thread Addy
ok, so where I can find about the firmware modification?

On Sep 22, 3:59 pm, Addy joyy.bl...@gmail.com wrote:
 I just want to capture the sequence of user interaction on android
 device. Starting from when the device is powered ON. And one more
 thing is that I am not talking about the user event on UI of any
 application. Its for whole device UI interaction. And if any tools are
 available then please let me know about it. I didn't get anything
 about this. Any help or suggestion is well appreciate.

 Thanks.
 Addy

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Problem in getting result from filtered list

2010-06-16 Thread Addy
Hi.

In my application I used a custom list for displayed some country
name.

and for enable search from the list, Filter applied on the custom
list.

Filter works on a simply String ArrayList. And its work fine.

But My problem is When I searched for any country name the search
happend only on String's Starting letter not on the Any letter in the
string.

For example..
my country List is

ListString Country_List=new ArrayListString();

Country_List.add(Australia);
Country_List.add(USA);
Country_List.add(England);
Country_List.add(China);

If my search text for country name is 'U'

then

It gives result  'USA' not ' Australia'.

But I want both reasult 'USA' and 'Australia' (Country name which
contains u letter in any position of its name)

Please Help me.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] how to download file from android web view file link?

2010-06-01 Thread Addy
Hi all.

I m working on a Android application In which I want to download files
from
the android web view file link.

But I don't know how can do it?

for e.g. In my application the webview display a html page within some
file's hyper link. And I want to download that file from select its
hyper
link.
Is there any methods for get selected hyper link from the android web
browser?

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en