[android-developers] I want to compile libmedia.so and JNI libraries individually

2011-06-26 Thread rinks24583
Hi,

Currently I am making changes to source files in frameworks/base/media/
libmedia and frameworks/base/media/libstagefright of Android 2.3
(Gingerbread). After making any change I am compiling the complete
Gingerbread pacakge and SDK by giving following commands:

make -j12
make sdk

This process take a lot of time. To avoid this I tried compiling just
framework/base folder libraries by giving following command:
source build/envsetup.sh
mm frameworks/base

Its says "make: Nothing to be done for `frameworks/base/'.". I am sure
that I have made changes to some files in frameworks/base/media/
libmedia and frameworks/base/media/libstagefright folders. But I am
not sure why it doesn't compile those libraries in frameworks/base
folder.

Please let me know if I am missing anything. Also please let me know
if there is any other method to compile some part of Android 2.3
individually to avoid time consuming process of compiling the complete
Gingerbread repo.

Regards,
Rinkal

-- 
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


Re: [android-developers] what's wrong with this http post to server code?

2011-06-26 Thread 陈彧堃
i found the problem by myself. It's problem of the usage of deflater,
correct solution should be:
public static byte[] deflaterCompress(String str) throws IOException
{
TOTAL_LEN = 0;
byte[] input = str.getBytes(encoding);
Deflater deflater = new Deflater();
deflater.setInput(input);
deflater.finish();
 byte[] buf = new byte[8192];
 ByteArrayOutputStream baos = new ByteArrayOutputStream();
 while (!deflater.finished()) {
 int byteCount = deflater.deflate(buf);
 TOTAL_LEN += byteCount;
 baos.write(buf, 0, byteCount);
 }
 deflater.end();

 byte[] compressedBytes = baos.toByteArray();
 return compressedBytes;
}

On Mon, Jun 27, 2011 at 1:09 PM, lily  wrote:

> **
> Have you add the internet permission in manifest like this?
>  android:name="android.permission.INTERNET">
>
> 于 2011/6/27 11:10, 陈彧堃 写道:
>
> I use deflater to compress string data. It works fine on java console
> project, but while running on android enviroment, server will report "buffer
> error" problem and reture 500.
>
>  SendMessage(String content, String url)
> {
>  byte[] bs = deflaterCompress(content);
>   URL url = new URL(urlStr);
> HttpURLConnection httpConn = (HttpURLConnection)
> url.openConnection();
> httpConn.setDoOutput(true);
> httpConn.setRequestMethod("POST");
> httpConn.setDoInput(true);
>
> //httpConn.setRequestProperty("Content-length",
> String.valueOf(UmengDeviceHelper.TOTAL_LEN));
> httpConn.setRequestProperty("Content-Type",
> "application/octet-stream");
> httpConn.setRequestProperty("Content-Encoding", "deflate");
> httpConn.connect();
>  DataOutputStream outputStream = new
> DataOutputStream(httpConn.getOutputStream());
> outputStream.write(bs);
> //outputStream.write(content.getBytes("utf-8"));
> outputStream.flush();
> outputStream.close();
>
> int responseCode = 500;
> try {
> responseCode = httpConn.getResponseCode();
> Log.i("MobclickAgent", "reture code is:" + responseCode);
> } catch (NumberFormatException e) {
> // ignore
>  e.printStackTrace();
> }
> }
>
>  public static byte[] deflaterCompress(String str) throws IOException
>  {
>  byte[] input = str.getBytes(encoding);
>  byte[] output = new byte[100];
>  Deflater compresser = new Deflater();
>  compresser.setInput(input);
>  compresser.finish();
>  TOTAL_LEN = compresser.deflate(output);
>   return output;
>  }
>  --
> 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
>
>
>  --
> 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
>

-- 
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

Re: [android-developers] passing data between EXISTING activities

2011-06-26 Thread TreKing
On Fri, Jun 24, 2011 at 11:47 PM, Gyubok  wrote:

> I have started an activity and start an another activity
> within the first activity by pressing a button. The user enters a text
> in the second activity and upon existing the second activity, I want
> to display that text in the first activity's text view.
>
> How can I achieve this?
>

Look at startActivityForResult() and onActivityResult() in Activity class.

-
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 capture Video and Photo at same time in an activity

2011-06-26 Thread Ganapathy
I want to take video and photo at same time.

I have two buttons.

1.when user click on one it have to take video and

2.another button then it have to stop recording video and take photo.

Now i am trying recorder and camera but its not working fine ,

also note not both in same time i want to do one after another vice
versa ..

Can any one tell me a good idea for this.

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


Re: [android-developers] [Android Development] Can i use MapView and ListView in the same screen ?

2011-06-26 Thread TreKing
On Fri, Jun 24, 2011 at 10:52 PM, hei chan  wrote:

> As i known, using MapView should extends MapActivity
>

Not exactly - to use a MapView it must be in a MapActivity ... no
"extending" one.


> and using ListView should extends ListActivity.
>

Not exactly - ListActivity simplifies using a ListView in an activity where
that's the only (or primary) view. It helps but is not required.


> Can i combine two Activities into one?
>

Yes.


> Is it possible to do it?
>

Yes.

-
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

Re: [android-developers] how to use .so

2011-06-26 Thread TreKing
On Mon, Jun 27, 2011 at 1:22 AM, cindy  wrote:

> My cowork give me a .so as library for my android project? How could I
> use that? I am java programmar. I am confused.
>

Did you try asking your "cowork"?

-
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

Re: [android-developers] Different resources, one xml file?

2011-06-26 Thread TreKing
On Fri, Jun 24, 2011 at 4:00 AM, muckwarrior  wrote:

> Is there an easy way to do this without duplicating code?


protected void onCreate(Bundle bundle)
{
 setContentView(R.layout.my_single_layout);
 setCustomButtonImageBasedOnSubject();
 setCustomBackgroundImageBasedOnSubject();
}

Now implement those two functions.

-
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

Re: [android-developers] Looking for Android language translation partners

2011-06-26 Thread Bernard T. Higonnet
It's not that I want to be cruel, but the English shown on your app's 
page is rather poor. For extranslation would produce the word "quite" when the word should be "quiet".


Though it is true that both users and possible translators could work 
from the present English version, starting with a good English one would 
help...


Bernard Higonnet

On 06/24/11 15:00, WeiLong wrote:

Dear whom may concern,

I'm looking for a language exchange partners of Android developing who
can help on various language translation.

This is the application that I developed , “Stop dog barking”
https://market.android.com/details?id=com.wuhome.stopDogBarking

Although I’m using “Google translation” to do roughly translation, I’m
searching for help to make it more colloquialism and easy to
understand.

As a partner, I will provide Traditional Chinese&  simple Chinese
translation service for you.

Below is language exchange partners that I'm looking for.
1.  Russian,  http://dl.dropbox.com/u/25164515/Russian.doc
2.  Dutch,  http://dl.dropbox.com/u/25164515/Dutch.doc
3.  Italian,  http://dl.dropbox.com/u/25164515/Italian.doc
4.  Czech,  http://dl.dropbox.com/u/25164515/Czech.doc
5.  Polish,  http://dl.dropbox.com/u/25164515/Polish.doc
6.  Portuguese,  http://dl.dropbox.com/u/25164515/Portuguese.doc
7.  Finnish,  http://dl.dropbox.com/u/25164515/Finnish.doc
8.  Swedish,  http://dl.dropbox.com/u/25164515/Swedish.doc
9.  Norwegian Bokmål,  
http://dl.dropbox.com/u/25164515/Norwegian%20Bokm%C3%A5l.doc
10. Danish,  http://dl.dropbox.com/u/25164515/Danish.doc

If you are interesting, please contact me at wuwei...@gmail.com

Weilong 2011/6/24
Taiwan, Taipei



--
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] sgs i9000 + adk

2011-06-26 Thread bash
Hello android developers,
I was wondering if anybody has been able to get an adk application
working on the Samsung galaxy s I9000 and if so how was it done. I
have upgraded to a leaked version of gingerbread 2.3.4 but get an
error inside of the eclipse ide from the sdk that no compatiable
device was found to run my sample adk application on. I have also
tried installing miui 1.6.24 which is also based on gingerbread 2.3.4
but I get the same error message as what I have stated before. Any
help would be greatly appreciated.
Thank you

-- 
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


Re: [android-developers] Is it possible to receive a notification whenever user launch some application ?

2011-06-26 Thread TreKing
On Fri, Jun 24, 2011 at 9:01 AM, snilga  wrote:

> How could I receive such notification in Android ?
>

You can't.

-
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] Android application blocked by Market for Motorola Xoom

2011-06-26 Thread develop...@edh.co.za
I've got an android application which runs on a Motorola Xoom, but can
not be seen from the market on a Xoom. Here is the market link to the
app: https://market.android.com/details?id=com.flightscope.app

I'm also including my whole manifest without its activities.



http://schemas.android.com/apk/res/android";
  package="com.flightscope.app"
  android:versionCode="9" android:versionName="v1.0.5 (June
2011)">
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  


The website (https://market.android.com/publish) says the following
about the application:

This apk requests 8 permissions that users will be warned about
android.permission.INTERNET
android.permission.ACCESS_WIFI_STATE
android.permission.CHANGE_WIFI_STATE
android.permission.ACCESS_NETWORK_STATE
android.permission.CHANGE_NETWORK_STATE
android.permission.WRITE_EXTERNAL_STORAGE
android.permission.BLUETOOTH
android.permission.BLUETOOTH_ADMIN

This apk requests 3 features that will be used for Android Market
filtering
android.hardware.wifi
android.hardware.bluetooth
android.hardware.touchscreen

This apk requests 1 native platforms that will be used for Android
Market filtering
armeabi

Copy protection is set.

Supported Devices
[Learn More]
This application is only available to devices with these features, as
defined in your application manifest.
Screen layouts: SMALL NORMAL LARGE XLARGE
Required device features
android.hardware.wifi
android.hardware.bluetooth
android.hardware.touchscreen
This application is available to over 411 devices. Show devices

And when I click on the "Show devices" link, the Xoom does appear in
that list. As you can see I already have the telephony feature set to
false and the application is still blocked.

Any advice will be greatly appreciated

Kind regards

Johan Radyn

-- 
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


Re: [android-developers] Install % not updating?

2011-06-26 Thread TreKing
On Sun, Jun 26, 2011 at 10:35 PM, Zsolt Vasvari  wrote:

> Is it only my app which has an install% not updating, but the
> download number is?
>

Personally, I don't even bother checking either of those stats anymore -
this is one of the never-ending "known issues" that happens to many
developers over and over again.
http://www.google.com/support/androidmarket/developer/bin/static.py?page=known_issues.cs

-
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] Creation of new radio app

2011-06-26 Thread allymcbo...@gmail.com
Hey guys, I'm new at all this and been charged with the fun of making
an online internet radio app.

To start with, it's only one station through a cast3.serverroom.us

If anyone can point me in the in right direction, that would be
fantastic :)

-- 
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] Add title to gallery

2011-06-26 Thread Kivak
Hello everyone!

I am a pretty recent beginner to the android SDK and Java in general.
I've had experience in OOP programming, but most of my programming has
been in PHP and SQL - quite a bit different from Java as far as I can
tell.

My question pertains to the use of the Gallery wigit. I was able to
look up a couple tutorials on how to use the wigit and add photos into
it using an ImageAdapter (class extending the BaseAdapter) - even make
them full screen. But what I want to do is to add some text to the
screen as well which will change based on the photo that is there. For
example: the name of the photo itself.

My line of thinking was that I could use the "getView()" function in
the ImageAdapter class because it is called every time you scroll to
another image. But I cannot use "findViewById()" in the ImageAdapter
class (I assume because it extends BaseAdapter and not Activity).

Can anyone at least point me in the right direction of how to solve
this?

Thanks so much for your time and help!!
-Kivak



Code is as follows:

Wallpapers Class (the class called as intent)


import android.app.Activity;
import android.os.Bundle;
import android.widget.Gallery;

public class Wallpapers extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

setContentView(R.layout.wallpapers);

((Gallery) findViewById(R.id.gallery)).setAdapter(new
WallpaperImageAdapter(this));
}
}



ImageAdapter Class
-

import android.content.Context;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.Gallery;
import android.widget.ImageView;
import android.widget.Gallery.LayoutParams;

public class WallpaperImageAdapter extends BaseAdapter {

/** The parent context */
private Context myContext;

/**
 * All images to be displayed. Put some images to project-folder:
 * '/res/drawable/uvw.xyz' .
 */
private int[] myImageIds = { R.drawable.wallpaper_1,
R.drawable.wallpaper_2, R.drawable.wallpaper_3,
R.drawable.wallpaper_4 };

/** Simple Constructor saving the 'parent' context. */
public WallpaperImageAdapter(Context c) {
this.myContext = c;
}

/** Returns the amount of images we have defined. */
public int getCount() {
return this.myImageIds.length;
}

/* Use the array-Positions as unique IDs */
public Object getItem(int position) {
return position;
}

public long getItemId(int position) {
return position;
}

/**
 * Returns a new ImageView to be displayed, depending on the position
 * passed.
 */
public View getView(int position, View convertView, ViewGroup parent)
{
ImageView i = new ImageView(this.myContext);

i.setImageResource(this.myImageIds[position]);
/* Image should be scaled as width/height are set. */
i.setScaleType(ImageView.ScaleType.FIT_CENTER);
/* Set the Width/Height of the ImageView. */
i.setLayoutParams(new
Gallery.LayoutParams(LayoutParams.MATCH_PARENT,
LayoutParams.MATCH_PARENT));
return i;
}


}




Wallpaper.xml
---


http://schemas.android.com/apk/res/
android"
   android:orientation="vertical"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent" >



-- 
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


Re: [android-developers] what's wrong with this http post to server code?

2011-06-26 Thread lily

Have you add the internet permission in manifest like this?
android:name="android.permission.INTERNET">


? 2011/6/27 11:10, ??? ??:
I use deflater to compress string data. It works fine on java console 
project, but while running on android enviroment, server will report 
"buffer error" problem and reture 500.


SendMessage(String content, String url)
{
byte[] bs = deflaterCompress(content);
URL url = new URL(urlStr);
   HttpURLConnection httpConn = (HttpURLConnection) 
url.openConnection();

   httpConn.setDoOutput(true);
   httpConn.setRequestMethod("POST");
   httpConn.setDoInput(true);
   //httpConn.setRequestProperty("Content-length", 
String.valueOf(UmengDeviceHelper.TOTAL_LEN));
   httpConn.setRequestProperty("Content-Type", 
"application/octet-stream");

   httpConn.setRequestProperty("Content-Encoding", "deflate");
   httpConn.connect();
   DataOutputStream outputStream = new 
DataOutputStream(httpConn.getOutputStream());

   outputStream.write(bs);
   //outputStream.write(content.getBytes("utf-8"));
   outputStream.flush();
   outputStream.close();
   int responseCode = 500;
   try {
   responseCode = httpConn.getResponseCode();
   Log.i("MobclickAgent", "reture code is:" + responseCode);
   } catch (NumberFormatException e) {
   // ignore
e.printStackTrace();
   }
}

public static byte[] deflaterCompress(String str) throws IOException
{
byte[] input = str.getBytes(encoding);
byte[] output = new byte[100];
Deflater compresser = new Deflater();
compresser.setInput(input);
compresser.finish();
TOTAL_LEN = compresser.deflate(output);
return output;
}
--
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 


--
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] Application stops unexpectedly in the emulator

2011-06-26 Thread 121914r
i am new to android and have been developing a login app.The main
file  login.xml is displayed on the emulator but as soon as i press
the button for new user registration it shows "application has stopped
unexpectedly" and prompts to close the app.
i also tried debugging with the debug perspective but things are not
that clear to me.
the entries in the logcat are as follows:-

hope i ll be able to fix it soon..thnks in advance :))

06-27 11:04:30.663: ERROR/Zygote(32): setreuid() failed. errno: 2
06-27 11:04:30.663: ERROR/Zygote(32): setreuid() failed. errno: 17
06-27 11:04:30.663: ERROR/BatteryService(51): usbOnlinePath not found
06-27 11:04:30.663: ERROR/BatteryService(51): batteryVoltagePath not
found
06-27 11:04:30.663: ERROR/BatteryService(51): batteryTemperaturePath
not found
06-27 11:04:30.663: ERROR/SurfaceFlinger(51): Couldn't open /sys/power/
wait_for_fb_sleep or /sys/power/wait_for_fb_wake
06-27 11:04:42.852: ERROR/EventHub(51): could not get driver version
for /dev/input/mouse0, Not a typewriter
06-27 11:04:42.852: ERROR/EventHub(51): could not get driver version
for /dev/input/mice, Not a typewriter
06-27 11:04:43.092: ERROR/System(51): Failure starting core service
06-27 11:04:43.092: ERROR/System(51): java.lang.SecurityException
06-27 11:04:43.092: ERROR/System(51): at
android.os.BinderProxy.transact(Native Method)
06-27 11:04:43.092: ERROR/System(51): at
android.os.ServiceManagerProxy.addService(ServiceManagerNative.java:
146)
06-27 11:04:43.092: ERROR/System(51): at
android.os.ServiceManager.addService(ServiceManager.java:72)
06-27 11:04:43.092: ERROR/System(51): at
com.android.server.ServerThread.run(SystemServer.java:184)
06-27 11:04:43.743: ERROR/SoundPool(51): error loading /system/media/
audio/ui/Effect_Tick.ogg
06-27 11:04:43.743: ERROR/SoundPool(51): error loading /system/media/
audio/ui/KeypressStandard.ogg
06-27 11:04:43.743: ERROR/SoundPool(51): error loading /system/media/
audio/ui/KeypressSpacebar.ogg
06-27 11:04:43.743: ERROR/SoundPool(51): error loading /system/media/
audio/ui/KeypressDelete.ogg
06-27 11:04:43.752: ERROR/SoundPool(51): error loading /system/media/
audio/ui/KeypressReturn.ogg
06-27 11:04:44.972: ERROR/ThrottleService(51): Could not open GPS
configuration file /etc/gps.conf
06-27 11:04:46.032: ERROR/logwrapper(135): executing /system/bin/tc
failed: No such file or directory
06-27 11:04:46.142: ERROR/logwrapper(136): executing /system/bin/tc
failed: No such file or directory
06-27 11:04:46.293: ERROR/logwrapper(137): executing /system/bin/tc
failed: No such file or directory
06-27 11:04:55.002: ERROR/HierarchicalStateMachine(51): TetherMaster -
unhandledMessage: msg.what=3


-- 
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] Can we get help shutting down APKTOP and other Android warez sites?

2011-06-26 Thread John Watkinson
We are finding that Google searches for our apps are often returning
APKTOP links on the first page of results, where the APK is
downloadable right from the page with a single click. This is for both
paid and free apps. Can Google use its muscle to help get such sites
shut down?

http://www.apktop.com

Thanks!

 John Watkinson
 Larva Labs LLC

-- 
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] Device and printer connection for printing data on printer.

2011-06-26 Thread ABS
Hi Everyone,
I am getting problem in sending data to printer
through my application,Already i done with one printer which takes
data in form of character using socket connection, but when i am
sending using same data to another printer who is taking data in the
form of  ASCII codes for character.
   Actually I stuck here if anyone has solution for this
problem plz let me know.


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] navigate view feed from xml

2011-06-26 Thread kengheng
Dear All, I got a xml as below. I would like to present them in 2 view, 
Primary view will show only horror, romance, when click on horror, the 
next view will show Horror A, Horror B, Horror C and etc...


Any good tutorial or example I can follow?



Horror A
Horror B
Horror C


Romance A
Romance B
Romance C




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] Proximity Alerts

2011-06-26 Thread Scriptmatic
I have some basic questions about proximity alerts.

How many alerts can be added within a single app?  I have a database
that could have hundreds or even thousands of locations that the user
needs to be alerted to when near those locations.

Is there a limit to the number of locations that can be added.

If so then what would a good alternative method be of getting
proximity alerts for a very long list of locations?

Thanks

Scriptmatic

-- 
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] Finding out more Cancel information in Developer Console

2011-06-26 Thread gjw
About one in 5 purchases end up canceling within 3-8 minutes of purchase. I 
suppose this is long enough for someone to decide they are not interested. 
 I have no problem with that.  But with some many different incarnations of 
the phones out there -- what if the app didn't load, or didn't load 
correctly, or had a crash bug that was peculiar to their phone. The app runs 
fine on our test phones and the beta testers.
Is there any way to get more information from the Developer Console or 
Merchant Accounts as to why they cancelled, or at least the phone or tablet 
they downloaded to?  I'm pretty sure one of the questions ask when they 
cancel is "Why?"  It would nice if that information was available to us.

Thanks in advance for any responses.

gjw

-- 
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] Android apps in php

2011-06-26 Thread rrvasanth
Dear Friends

 How to create android application in php..?

Thanks
Vasanth

-- 
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] Application stops unexpectedly in the emulator

2011-06-26 Thread 121914r
i am new to android and have been developing a login app.The main
file  login.xml is displayed on the emulator but as soon as i press
the button for new user registration it shows "application has stopped
unexpectedly" and prompts to close the app.
i also tried debugging with the debug perspective but things are not
that clear to me.
the entries in the logcat are as follows:-

hope i ll be able to fix it soon..thnks in advance :))

06-27 11:04:30.663: ERROR/Zygote(32): setreuid() failed. errno: 2
06-27 11:04:30.663: ERROR/Zygote(32): setreuid() failed. errno: 17
06-27 11:04:30.663: ERROR/BatteryService(51): usbOnlinePath not found
06-27 11:04:30.663: ERROR/BatteryService(51): batteryVoltagePath not
found
06-27 11:04:30.663: ERROR/BatteryService(51): batteryTemperaturePath
not found
06-27 11:04:30.663: ERROR/SurfaceFlinger(51): Couldn't open /sys/power/
wait_for_fb_sleep or /sys/power/wait_for_fb_wake
06-27 11:04:42.852: ERROR/EventHub(51): could not get driver version
for /dev/input/mouse0, Not a typewriter
06-27 11:04:42.852: ERROR/EventHub(51): could not get driver version
for /dev/input/mice, Not a typewriter
06-27 11:04:43.092: ERROR/System(51): Failure starting core service
06-27 11:04:43.092: ERROR/System(51): java.lang.SecurityException
06-27 11:04:43.092: ERROR/System(51): at
android.os.BinderProxy.transact(Native Method)
06-27 11:04:43.092: ERROR/System(51): at
android.os.ServiceManagerProxy.addService(ServiceManagerNative.java:
146)
06-27 11:04:43.092: ERROR/System(51): at
android.os.ServiceManager.addService(ServiceManager.java:72)
06-27 11:04:43.092: ERROR/System(51): at
com.android.server.ServerThread.run(SystemServer.java:184)
06-27 11:04:43.743: ERROR/SoundPool(51): error loading /system/media/
audio/ui/Effect_Tick.ogg
06-27 11:04:43.743: ERROR/SoundPool(51): error loading /system/media/
audio/ui/KeypressStandard.ogg
06-27 11:04:43.743: ERROR/SoundPool(51): error loading /system/media/
audio/ui/KeypressSpacebar.ogg
06-27 11:04:43.743: ERROR/SoundPool(51): error loading /system/media/
audio/ui/KeypressDelete.ogg
06-27 11:04:43.752: ERROR/SoundPool(51): error loading /system/media/
audio/ui/KeypressReturn.ogg
06-27 11:04:44.972: ERROR/ThrottleService(51): Could not open GPS
configuration file /etc/gps.conf
06-27 11:04:46.032: ERROR/logwrapper(135): executing /system/bin/tc
failed: No such file or directory
06-27 11:04:46.142: ERROR/logwrapper(136): executing /system/bin/tc
failed: No such file or directory
06-27 11:04:46.293: ERROR/logwrapper(137): executing /system/bin/tc
failed: No such file or directory
06-27 11:04:55.002: ERROR/HierarchicalStateMachine(51): TetherMaster -
unhandledMessage: msg.what=3


-- 
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] Having trouble with ACTION_MOVE in Android SDK

2011-06-26 Thread Aki
I am trying to update a Buttons location on the touch and drag event,
but the coordinates generated by the event are toggling between low
and high values. Like this,
(70, 24) - (15, 36) - (86, 51) - (20, 48) - (90, 54) - (32, 60) -
(102, 66) ...
[The above values are generated by logging the event.getX() and
event.getY() values]

You can see how the X coordinate toggles between low and high values.
Can anyone tell me why? How do I fix this?

I've already posted it on stackoverflow, without any results.

You can find the question and code in more detail here :
http://stackoverflow.com/q/6464613/802799

Regards,
Aki

-- 
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

Re: [android-developers] Install % not updating?

2011-06-26 Thread yoshiyuki kanno
me too.
Valid installed numbers is not updated from June 21...

2011/6/27 Zsolt Vasvari 

> Is it only my app which has an install% not updating, but the download
> number is?
>
> This has been going on for a week.
>
> No new installs as far as Google is concerned -> Install% going down -
> > Ranking from #4 to #8 --> Sales tanked
>
> Of course, nobody at Google is responding.
>
> --
> 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

-- 
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 Adapt your apps for the new LiveSound™ hi-fi headset and the LiveDock™ multimedia station

2011-06-26 Thread Johan Abramsson
Sony Ericsson has announced the LiveSound™ hi-fi headset and the
LiveDock™ multimedia station. The LiveSound™ hi-fi headset is also the
first headset to support the new LiveKey™ feature which is a button on
the headset where you as developer can control your application.  You
can download the tutorial and sample code here:
http://developer.sonyericsson.com/wportal/devworld/technology/smart-extras/livekey?cc=gb&lc=en
The LiveDock™ multimedia station is a smart, new docking station for
your phone which will launch any application you have set in the
LiveWare™ manager application. As developer you can adapt your
application to start as soon you connect the phone to LiveDock™.  You
can download the tutorial and sample code here:
http://developer.sonyericsson.com/wportal/devworld/technology/smart-extras/connectlaunch?cc=gb&lc=en

Kind regards
  /Johan & Najat

-- 
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


Re: [android-developers] OverlayItem Parcelable?

2011-06-26 Thread TreKing
On Sun, Jun 26, 2011 at 9:46 PM, Danny D  wrote:

> Is the Maps API class OverlayItem parcelable?
>

The documentation can answer this question.


> If not, can I extend the OverlayItem class and add my own implementation of
> Parcelable (for my extended data) and have it function correctly?
>

Yes.

-
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

Re: [android-developers] Re: Crash logs?

2011-06-26 Thread TreKing
On Sun, Jun 26, 2011 at 6:23 PM, Santiago Lema wrote:

> Still don't understand why Google doesn't display this. I mean you get this
> information in the statistics, so why not with the crashlogs.
>

Well you do get a list of phones and application versions each crash has
occurred on. Unfortunately it's presented in such an awful manner that you
can't tell what version of your app crashed on which device and which user
comment (if any) was associated with either piece of information.

-
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] HardwareKey to start Service

2011-06-26 Thread titli batali
hey all

I was looking to synchronize hardware key in my application. In one of
the module of my project
I want to send the saved message to selected contact group using
double press of any hardware key ( say power button coz it is
available in all android phones)  .

Scenario : a  user presses the power button twice any time ( say user
is on homescreen or listening to music), and the predefined  message
saved in my application is sent to the selected contact group .

This functionality should work even if the user reboots its device any
number of time.Is it possible to start the backgroud service using
HardwareKey.??

How cud i add this functionality to my project ? Cud anyone help.???

Thanx
TiTliBaTaLi

-- 
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: Map tiles unnecessarily reloading when panning

2011-06-26 Thread Michael Diener
I hate to resurrect the thread, but I'm experiencing this issue with Android 
3.1 on an Asus EEE Pad Transformer with Android 3.1. 

First I thought it is an issue with my code, but turns out other apps (like 
"Weather Bug for Honeycomb") that use the Maps API have the same issue. 
It happens especially with the normal maps layer and not so much with the 
satellite layer. 

Running in debug mode I see that a DataRequestDispatcher thread (seems to 
load the Google map tiles) is created that runs for a second or so, followed 
by an unnamed thread (originating in MapView$Repainter$1.run()) that runs 
even shorter. This is repeating over and over again while some map tiles are 
reloaded and reloaded.

Appreciate any help.

/Michael

-- 
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

Re: [android-developers] Expandable List and Intents

2011-06-26 Thread titli batali
welcum :)

On 6/26/11, ΙΟΥΛΙΑ ΓΡΗΓΟΡΙΑΔΟΥ  wrote:
> thank you so much! I 'll work on  it!
>
> --
> 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

-- 
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


Re: [android-developers] Keyboard Show/Hide Notification

2011-06-26 Thread harish rudra
onconfigurationchanged

On Thu, Jun 23, 2011 at 10:41 AM, Prasannaa  wrote:

> Hi,
>
>I would like to know when the keyboard appears/disappears.I found
> out that (by searching) that there are no direct api's for this and
> onGlobolLayoutListener's onGlobalLayout is generally used to find
> this.But, the problems I am facing in doing so is
>
>
>  1)  On Landscape mode, onGlobalLayout  does not even gets called
>   (on devices with no physical key board and the soft keyboard
> occupies the entire screen , OS 2.1).
>
>   2) Sometimes, onGlobalLayout  listener is called multiple times
> when the user is trying to edit the text view. (OS 2.3,4).
>
>
>  Normally, how do one identify the keyboard existence/absence.
>
>  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

-- 
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

Re: [android-developers] Data transfer server to client in android application.

2011-06-26 Thread Farhan Tariq
I think you first need to understand simple java server-client setups. See
http://www.rgagnon.com/javadetails/java-0542.html. Once you understand the
flow of the client-server model, you will be able to think clearly what you
need to code.

On Sat, Jun 25, 2011 at 12:04 PM, Naga K  wrote:

> Dears,
>
>
>
> How to Data transfer server to client in android application by using WiFi.
>
> Thanks
> Naga
>
> --
> 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

-- 
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] Screenshots that are uploaded to the marketplace are cropped.

2011-06-26 Thread Wrinkled Swuave AKA Peach Coddler
When I go to the market on my phone to look at my apps, the
screenshots (thumbnails) are cropped in a strange way.  When you click
on the thumbnails they open up fine.  (Again, this is all on the phone
at the market).

I noticed that other apps do not seem to have this problem, although I
noticed a few others had this problem but did not post how it got
resolved.

I am using .png at 320x480.   I used to have them at 400x800 (our
previous build used this screenshot size and it worked fine before!)
So I am at a loss as why this is happening.  I have double and triple
checked my settings.

Has anyone else had this issue?  How did you resolve it?

Thanks so much everyone!

J

-- 
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] Beginning with Android App development

2011-06-26 Thread hozyali
Hi Friends,

I really want to start with android app development with basics. I
don't have much idea about how and from where to start.

I am a PHP programmer with about 10 years of programming experience.
But I haven't ever developed any mobile application so this time I am
willing to start working.

I use Windows 7 and already installed the JDK and Android development
kit.

Please advise the next steps.

Any help or suggestions will highly be appreciated.

Thank you

-- 
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 phone number through other method

2011-06-26 Thread ellen...@hotmail.com
Dear Android experts,

I'm trying to get the phone number through
TelephonyManager.getLine1Number().
As many threads discussed before, it couldn't work in a real device,
null as the result.

Now my question is, whether there is some other way to get the phone
number?

I searched one method said that it could send a sms to Internet
Operator somewhere.
1. could you please provide the detail interface if it is a possible
way?
2. And, is there any difference for the interface among different
Internet Operator?
3. After sent the sms, where to get the phone number? please also
provide the interface if possible.

Looking for your response..

-- 
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] Gmail, content providers, and formalising support..

2011-06-26 Thread Mark
Gmail functionality has been augmented for some time now by app
developers using the gmail-ls content provider.. now i know that the
default response in mentioning this is "it's not supported, not
intended to be used by 3rd parties, and is actively discouraged", but
nonetheless some developers have put it to good use providing
important features to users.

With honeycomb, something has changed with the provider, thus breaking
the functionality of these apps, and yes i realise again the response
will be "tough luck, thats what happens when you use unsupported apis
and functionality", and i *completely* appreciate that. What i'm
interested in is more if there will ever be concrete support for
developers to access the gmail content provider or some equivalent api
to provide the kind of functionality people actively require these
days?

I don't know what has changed with the content provider exactly, it
could be something trivial, or perhaps its now locked down because of
concerns regarding applications accessing user emails for some reason,
but the reason i'm asking is primarily because, to developers that aim
to augment gmail usage for users on android, they face two ways of
achieving this: 1. use the gmail content provider, or 2. implement
their own binding to gmail to access the data they require, using
something heavyweight like javamail.

With option 1. users are informed via manifest permissions that an
application will be accessing their gmail data (and informed whether
it's just read, or r/w access), and the overhead of potential apps can
be minimised thanks to relying on the existing db, and the presumably
fairly well designed and efficient background services for maintaining
said db and communicating with the gmail servers.

With option 2. users won't necessarily have that obvious flag that the
app is using the gmail data (albeit at some point they will have to
authenticate via the app), and the developer will have to implement a
custom solution for monitoring changes to mail, leading to more
background services, with potentially multiple solutions polling the
imap servers indiscriminately or worse, periodically hitting up the
atom feeds, duplicating functionality and eating up cpu time, battery
life, and network bandwidth.

I realise this probably isn't the best mailing list to try, and that
the google apps are maintained as a separate project from android as
such, but i'm hoping someone on the gmail team sees this and some
thought can be put into supporting developers here. Perhaps it's a
trivial change that some enterprising soul will figure out, but
regardless i think formalising support for things like this would be
of benefit to everyone, rather than the current "don't ask, don't
tell" policy of using unsupported content providers like this.

Cheers.

-- 
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 achieve the HTTP Live Streaming on Android 3.0+?

2011-06-26 Thread Sha Hua
Hi guys,

I am currently doing something relevant to the HTTP Live Streaming and we
plan to realize a demo on the android platform. I noticed from the "Platform
Highlights" of Android 3.0 Platform that it currently supports the HTTP Live
Streaming. This is what is written on the website:

"*HTTP Live streaming*
Applications can now pass an M3U playlist URL to the media framework to
begin an HTTP Live streaming session. The media framework supports most of
the HTTP Live streaming specification, including adaptive bit rate"

However, in the "Android API Difference Report", I didn't found any new
class added and the modified classes are all seems not quite relevant to
HTTP Live Streaming. So I have two questions to ask and hope can find the
answer from you:

1. How to achieve HTTP Live Streaming using MediaPlayer class? Shall I
create a .m3u file with a set of URLs, then feed the .m3u file directly to
the MediaPlayer? For example if my .m3u file is named mylist.m3u, can I use
something like the following code?

MediaPlayer mp;
mp.setDataSource(mylist.m3u);
...

Or are there any other APIs I can use?

2. It mentions that the HTTP Live Streaming in Android 3.0 Platform supports
also the adaptive bit rate. Normally for a mobile device, the streaming bit
rate should be adaptive to the wireless bandwidth condition. Has the current
Android 3.0 Platform already realize it? If there is a video server holding
the multiple versions of the same video, how to implement an app that it can
adaptively switch between the different versions according to the bandwidth?
If somebody has the relevant experience, please help to inform me what APIs
you have used and which part of the code I should look into.

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] Android client connect to Server. Which is the best way

2011-06-26 Thread Piraba
I have Android Application. I have to connect to MSSQL server
database. so I have to create sever application. Which is best sever
application among from these
JAVA REST application OR JAX-WS SOAP,
WCF(Windows Communication Foundation),
socket programming
normal PHP script.

bulk of data transfer from phone to sever & sever to phone
application. Which is good performance wise? Please advice me
regarding this as soon as possible.

Please help me

Thank 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] Android application connect to Server. Which is the best?

2011-06-26 Thread Piraba
I have Android Application. I have to connect to MSSQL server
database. so I have to create sever application. Which is best sever
application among from these
JAVA REST application OR JAX-WS SOAP,
WCF(Windows Communication Foundation),
socket programming
normal PHP script.

bulk of data transfer from phone to sever & sever to phone
application. Which is good performance wise? Please advice me
regarding this as soon as possible.

Please help me

Thank 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] passing data between EXISTING activities

2011-06-26 Thread Gyubok
Hi, I am new to android dev... Actually, just developing in general.

Anyway, I have started an activity and start an another activity
within the first activity by pressing a button. The user enters a text
in the second activity and upon existing the second activity, I want
to display that text in the first activity's text view.

How can I achieve this? The first activity is still running while
second activity completes its life cycle. 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


Re: [android-developers] Preferences activity not working in live app

2011-06-26 Thread TreKing
On Sun, Jun 26, 2011 at 1:41 PM, Raghav Sood  wrote:

> It works fine. How can a set of 3 more options change the working of the
> app so drastically?


It shouldn't and probably isn't. Where the app is crashing, print out the
string value of the preference you're trying to access, instead of trying to
parse it to an Integer. You will probably find that it's some non-integer
value.

-
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] Problem setting language on Speech Recognition

2011-06-26 Thread Bishop
Hi guys, I'm trying to perform voice recognition inside my app. I'm using 
the code below that I got from developer.android as model to build my own 
code. It is working well IN ENGLISH, but I need to configure the language so 
it can work with portugese. 

When I call the Android Voice Search from desktop it works perfectly in 
Portugese, but inside my application only works for english.
What can I do to configure the language inside my app or at least call the 
Voice Search installed on my phone.

Code I'm using as model
http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/app/VoiceRecognition.html


Thanks for any help
Flavio

-- 
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] INTERNAL SERVICE ERROR when buying using test account.

2011-06-26 Thread test user
Hi there,

I am trying to implement in app billing for my app. I thought I try out the
sample app. I have followed the documentation from (
http://developer.android.com/guide/market/billing/billing_integrate.html)
but I seem to keep getting the following error when trying to buy the
potion.

Any ideas how I can go about trying to figure this out. How can i find out
what the error is in the backend?

06-26 17:11:21.626: INFO/ActivityManager(2504): Displayed activity
com.android.vending/.billing.InAppBuyPageActivity: 327 ms (total 327 ms)
06-26 17:11:22.209: DEBUG/vending(19183): [43] BaseAction.run(): *ApiException:
com.android.vending.api.ApiException: Error from backend.
Request=com.android.vending.model.PurchasePostRequest,
Response=INTERNAL_SERVICE_ERROR*
06-26 17:11:22.209: ERROR/vending(19183): [43]
BasePurchaseActivity.onPurchasePostError(): PurchasePost error
06-26 17:11:22.217: INFO/vending(19183): [1] BaseAction.displayErrorUi():
Server error in com.android.vending.billing.PurchasePostAction:
com.android.vending.api.ApiException: Error from backend.
Request=com.android.vending.model.PurchasePostRequest,
Response=INTERNAL_SERVICE_ERROR

-- 
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] Having trouble with ACTION_MOVE in Android SDK

2011-06-26 Thread Aki
I am trying to update a Buttons location on the touch and drag event,
but the coordinates generated by the event are toggling between low
and high values. Like this,
(70, 24) - (15, 36) - (86, 51) - (20, 48) - (90, 54) - (32, 60) -
(102, 66) ...
[The above values are generated by logging the event.getX() and
event.getY() values]

You can see how the X coordinate toggles between low and high values.
Can anyone tell me why? How do I fix this?

You can find the question and code in more detail here :
http://stackoverflow.com/q/6464613/802799

Regards,
Aki

-- 
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] Zxing camera previe layout problem

2011-06-26 Thread phalaawn breotpneg
Hi Guys,

Now I'm developing Application using ZXing 1.7 library to scan barcode

but I have problem with layout on Nexus One, the viewfinder spill out
the screen, and when I tried to run on HTC wildfire, the scanner
layout is not in center of screen, How can I set the scanner rectangle
in the center of screen for both device? When I'm using intent
integrator, there is no problem with scanner layout, Any idea without
using intent integrator?



here is my code when I called the scanner

public void launchScanner(){

Intent intent = new Intent("com.google.zxing.client.android.SCAN");
startActivityForResult(intent, 0);

}

Thanks for your help

-wiem-

-- 
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] [Android Development] Can i use MapView and ListView in the same screen ?

2011-06-26 Thread hei chan
Hi All,

I am new android developer.
I want to do a screen including Map, List, Text.

Layouts like this:

   Some Text here.
   
   


As i known, using MapView should extends MapActivity and using
ListView should extends ListActivity.
Can i combine two Activities into one?
Is it possible to do it?

Thanks,
Hei

-- 
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 is 'debuggable=true' which is in the AndroidManifest.xml effective to application spped?

2011-06-26 Thread antasis9
I already know that the 'debuggable=true' controls the eclipse
debugger will be attached or not.

I want to know more effective of 'debuggable=true', is it slow down my
application even though didn't attached debugger?

or the log, debug level, will not be printed on logcat?

-- 
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] Tabbed content (HTML5) with question on one tab, answer on the next

2011-06-26 Thread allymcbo...@gmail.com
Hey all, wondering if someone can please help me code for HTML5 /
Javscript in the following scenario:

Information is on 3 tabs:

tab 1 has questions
tab 2 has answers
tab 3 has settings

After using tab 1, the results appear on tab 2.
Tab 3 changes the information that appears on tab 1.

I was wondering if there is any javascript out there or someone that
can help me to code effectively the automatic navigation and auto-
population of content on the tabs please?

-- 
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] Camera preview crashes without SURFACE_TYPE_PUSH_BUFFERS

2011-06-26 Thread alexandros mouzakidis
HI, i want to create a camera preview that is invisible, i have read
(here) that i only have to not use the SURFACE_TYPE_PUSH_BUFFERS but
when i do it my application crashes (i have tested it on the emulator)
the code is this

public CameraPreview(SCamera context, DrawView view) {
super(context);

mSurfaceView = new SurfaceView(context);
addView(mSurfaceView);

// Install a SurfaceHolder.Callback so we get notified when
the
// underlying surface is created and destroyed.
mHolder = mSurfaceView.getHolder();
mHolder.addCallback(this);
//mHolder.setType(SurfaceHolder.SURFACE_TYPE_NORMAL);
mHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
drawView = view;
}

Am i doing something wrong?

-- 
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] Android canvas.drawtext messes up Textposition

2011-06-26 Thread gizmol...@googlemail.com
Hi There,
when I try to set some text on an image from drawables, the drawText
function messes up the Text position when used on different screens
with different sizes or densities.Is there a way to get access to the
bitmap BEFORE scaling or is there a way to put the text in accordance
to the scaling?

-- 
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


Re: [android-developers] Re: Comments and Contacting Users

2011-06-26 Thread TreKing
On Sun, Jun 26, 2011 at 4:58 PM, Adam Ratana  wrote:

> How do you review your own _paid_ app?
>

Install the release version of your app on your device and the Market app
might mark it as "Installed", allowing you to comment and review like any
other app. If it doesn't do it, try uninstalling all updates on the Market
client and opening it back up. Works for me at least.

-
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] Using Hardware Key

2011-06-26 Thread titli batali
hey all

I was looking to synchronize hardware key in my application. In one of
the module of my project
I want to send the saved message to selected contact group using
double press of any hardware key ( say power button coz it is
available in all android phones)  .

Scenario : a  user presses the power button twice any time ( say user
is on homescreen or listening to music), and the predefined  message
saved in my application is sent to the selected contact group .

This functionality should work even if the user reboots its device any
number of time.

How cud i add this functionality to my project ? Cud anyone help.???

-- 
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 phone number

2011-06-26 Thread Ellen
Dear Android Experts,

I'm trying to get the SIM number by TelephonyManager.getLine1Number(),
permision has been set "READ_PHONE_STATE". As many thread discussed
before, it couldn't work in a real device due to the Internet Operator
didn't store this info to SIM card.

Now is there any other way or interface from Android to get the phone
number?

By the way, I searched one method said that it could get the phone
number by sent sms to some where, maybe the Internet Operator getway.
Do you know about this? If in that case:
1. what's the detail interface for sending the sms? by Intent or
SmsManager?
2. is there any difference for the interface from Android side amang
different Internet Operator?
3. then where and how to get the phone number?

Looking forward for your reponse..

Thanks!
Ellen

-- 
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] Android sdk insatllation problem?

2011-06-26 Thread SIVAKUMAR
Hi,

  I had a windows xp.I also had jdk6. I downloaded "android insatller
r11" for windows.When i click the installer.The error message is
displayed as alertr "Java se development kit" is not found,Then the
installation cannot happen. But in my system i had a java SE 6. I
cannot find y it is not take the java.Please help me

Thanks & Regards,
Sivakumar.J

-- 
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] Iconia not being recognised.

2011-06-26 Thread Pjde
Hi All

I recently purchase a 16GB Acer A500 with which I want to download my
own apps to.
The problem is that ADB refuses to recognise the device.

I have enabled the USB debugging and non-market apps on the device,
uploaded the latest SDK and ADT updates as well as getting the latest
drivers from Acer.

I have a cheap Chinese no-name 2.2 device that works without problem.

Any hints would be appreciated.

Paul

-- 
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 use .so

2011-06-26 Thread cindy
My cowork give me a .so as library for my android project? How could I
use that? I am java programmar. I am confused.

-- 
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


Re: [android-developers] Beginning with Android App development

2011-06-26 Thread Mohammed Hossain Doula
Do you have any Java Programming knowledge? If you don't have then please
study Java first. And then go to there
http://developer.android.com/guide/basics/what-is-android.html and study
thoroughly to get the knowledge of Android Application Development.

On Fri, Jun 24, 2011 at 7:18 PM, Ali  wrote:

> Hi Friends,
>
> I really want to start with android app development with basics. I don't
> have much idea about how and from where to start.
>
> I am a PHP programmer with about 10 years of programming experience. But I
> haven't ever developed any mobile application so this time I am willing to
> start working.
>
> I use Windows 7 and already installed the JDK and Android development kit.
>
> Please advise the next steps.
>
> Any help or suggestions will highly be appreciated.
>
> Thank you
>
> --
>
>
>
> Join me on [image: Facebook]  [image:
> LinkedIn]  [image: 
> Flickr]
>  [image: Twitter] 
> Quick Chat [image: Google Talk/] hozyali [image: Skype/] hozyali [image:
> MSN/] i...@starcomsystems.net [image: Y! messenger/] hozyali
>
>  --
> 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




-- 
*--
Mohammed Hossain Doula
Software Engineer
desme INC.*
*www: http://www.hossaindoula.com
@: ron...@desme.com*
*facebook: http://www.facebook.com/ROnyWorld*
*twitter: http://www.twitter.com/hossaindoula*
*blogspot: hossaindoula.blogspot.com
GSM: 00880-167-4347101*

-- 
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] Need of AIX resource

2011-06-26 Thread ben smith
*Dear Professional,
Hope your doing great,
I have a good opportunity for you can you please see the below job
description, if your interested  please reply me back with your updated
resume.Please send me youre resume on **b...@panzersolutions.com*

*Title  :   AIX resource
Location   : Winston Salem North Carolina
Duration  :6 Months Contract*
*Rate : $42 on C2C or 1099
*
*Must have: *
*
8+ years Unix system administration experience in an Enterprise environment
(including extensive knowledge of AIX).
Support 24x7 applications and systems on AIX, including Enterprise-level
Storage and Backup connectivity.
Run all aspects of performance monitoring including architecture,
implementation, maintenance and administration.
Ability to build P-Series from bare metal and ensuring security and
performance of operating system.
Experienced in design, implementation, and maintenance of P-Series systems
to align with business needs as demand grows.
Performs capacity planning and performance analysis as requested and
required within the AIX and associated hardware environment to provide
advance warning of pending

system problems and to overcome existing computer problems.
Develops and maintains documentation for essential hardware and software
components as well as user procedures and operator procedures.
Creates scripts of tests to be performed on all new software and hardware
components to ensure compatibility and functionality.
Ability to install and support IBM software.
Ability to install, configure, and support third party software products.
Deep technical experience in implementing/managing backup & recover and
disaster recovery solutions.


Thanks
Ben Smith | Technical Recruiter
Panzer Solutions LLC
45 Stuart  Ave, K
Norwalk CT 06850 USA
b...@panzersolutions.com*

-- 
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] Can the nexus s read HID cards response

2011-06-26 Thread Blue
While iClass operates on the 13.56-MHz frequency like NFC, it often
uses the longer-range ISO/IEC 15693 contactless standard. Readers
operating under this so-called “vicinity-card” standard can reportedly
read cards up to 1 meter away or more. Payment and ticketing use the
shorter-range ISO/IEC 14443 standard, which forms the core of the
current NFC technology. IClass also can support 14443.

-- 
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: Full screen on HTC sensation (qHD)

2011-06-26 Thread Josue Fuentes Gutierrez
Hola, para ajustes de pantalla utiliza:

 en el Manifiest:



   

-- 
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] Different resources, one xml file?

2011-06-26 Thread muckwarrior
I'm building an app, similar to a quiz app, where layouts and
functionality will be duplicated across a number of subjects. The
activities and layouts will be identical for each subject, the only
difference should be the resources used, e.g. Subject 1 uses button
image 1 and background 1, Subject 2 uses button image 2 etc.

What I'm trying to avoid is having duplicate xml files which would
essentially be identical except for the resources they point at. At
first I assumed I could uses themes to accomplish this but on closer
inspection it doesn't seem possible.

Is there an easy way to do this without duplicating code?

-- 
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] Beginning with Android App development

2011-06-26 Thread Ali
Hi Friends,

I really want to start with android app development with basics. I don't
have much idea about how and from where to start.

I am a PHP programmer with about 10 years of programming experience. But I
haven't ever developed any mobile application so this time I am willing to
start working.

I use Windows 7 and already installed the JDK and Android development kit.

Please advise the next steps.

Any help or suggestions will highly be appreciated.

Thank you

-- 



Join me on [image: Facebook]  [image:
LinkedIn]  [image:
Flickr]
 [image: Twitter] 
Quick Chat [image: Google Talk/] hozyali [image: Skype/] hozyali [image:
MSN/] i...@starcomsystems.net [image: Y! messenger/] hozyali

-- 
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] Need of Websphere Commerce Server Administrator

2011-06-26 Thread ben smith
*Dear Professional,
Hope your doing great,
I have a good oportunity for you can you please see the below job
description, if your interested  please reply me back with your updated
resume.Please send me youre resume on **b...@panzersolutions.com*

*Title  :Websphere Commerce Server Administrator

Location   :Ann Arbor, MI
Duration  :6+ Months Contract
Interview :Will hire off phone interview ASAP*

*Must
Need some with good experience with Websphere Commerce server Adminstration
or Websphere Application Server Administrator.


Thanks
Ben Smith | Technical Recruiter
Panzer Solutions LLC
45 Stuart  Ave, K
Norwalk CT 06850 USA
b...@panzersolutions.com
*

-- 
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

Re: [android-developers] Eclipse Project Error

2011-06-26 Thread Farhan Tariq
You sure you have specified the right AVD for launch?

On Thu, Jun 23, 2011 at 12:19 AM, TreKing  wrote:

> On Wed, Jun 22, 2011 at 9:59 AM, Angelina wrote:
>
>> However, the main Android project folder still contains a red x, and
>> Eclipse is not allowing a run or debug of the application because of this
>> errors in the project.
>>
>
> What "errors"? See the "Problems" view in Eclipse.
>
>
> -
> 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
>

-- 
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] Looking for Android language translation partners

2011-06-26 Thread WeiLong
Dear whom may concern,

I'm looking for a language exchange partners of Android developing who
can help on various language translation.

This is the application that I developed , “Stop dog barking”
https://market.android.com/details?id=com.wuhome.stopDogBarking

Although I’m using “Google translation” to do roughly translation, I’m
searching for help to make it more colloquialism and easy to
understand.

As a partner, I will provide Traditional Chinese & simple Chinese
translation service for you.

Below is language exchange partners that I'm looking for.
1.  Russian,  http://dl.dropbox.com/u/25164515/Russian.doc
2.  Dutch,  http://dl.dropbox.com/u/25164515/Dutch.doc
3.  Italian,  http://dl.dropbox.com/u/25164515/Italian.doc
4.  Czech,  http://dl.dropbox.com/u/25164515/Czech.doc
5.  Polish,  http://dl.dropbox.com/u/25164515/Polish.doc
6.  Portuguese,  http://dl.dropbox.com/u/25164515/Portuguese.doc
7.  Finnish,  http://dl.dropbox.com/u/25164515/Finnish.doc
8.  Swedish,  http://dl.dropbox.com/u/25164515/Swedish.doc
9.  Norwegian Bokmål,  
http://dl.dropbox.com/u/25164515/Norwegian%20Bokm%C3%A5l.doc
10. Danish,  http://dl.dropbox.com/u/25164515/Danish.doc

If you are interesting, please contact me at wuwei...@gmail.com

Weilong 2011/6/24
Taiwan, Taipei

-- 
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 android.permission.ACCESS_SURFACE_FLINGER

2011-06-26 Thread IvanIvanSpb
I need android.permission.ACCESS_SURFACE_FLINGER in my application.
I put my application to system/app but had no success. How to get this
permission?

-- 
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] Java.net.UnknownHostException using httpGet on Android

2011-06-26 Thread My Email
Exception  :

Java.net.UnknownHostException using httpGet on Android


String requestTpServer = "www.google.com";
HttpClient client = new DefaultHttpClient();
HttpResponse response = null ;

try {

  HttpGet get = new HttpGet(requestToServer);


  response = client.execute(getm);  ///Problem here

} catch (ClientProtocolException e) {

  e.printStackTrace();
} catch (IOException e) {

  e.printStackTrace();
}

String res = response.toString();

I have already set  

and also run String requestTpServer = "www.google.com";  in android
emulater browser

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] look at this mail

2011-06-26 Thread yoga raja
http://123maza.com/65/queen447/

-- 
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: glib linker errors on gingerbread

2011-06-26 Thread Sammoh
Can you post your make file?


On Jun 16, 10:55 am, arun_satya3  wrote:
> Hi,
>
> While building bluez 4.94 on gingerbread, am getting the following
> error -
>
> prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/
> 4.4.3/../../../../arm-eabi/bin/ld: out/target/product/crespo/obj/
> STATIC_LIBRARIES/libbuiltinattrib_intermediates/
> libbuiltinattrib.a(gattrib.o): in function
> g_attrib_cancel_all:external/bluetooth/bluez/attrib/gattrib.c:499:
> error:undefinedreferenceto 'g_queue_pop_head'
>
> prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/
> 4.4.3/../../../../arm-eabi/bin/ld: out/target/product/crespo/obj/
> STATIC_LIBRARIES/libbuiltinattrib_intermediates/
> libbuiltinattrib.a(gattrib.o): in function
> g_attrib_cancel_all:external/bluetooth/bluez/attrib/gattrib.c:513:
> error:undefinedreferenceto 'g_queue_push_head'
>
> the definition is in glib/glib/galias.h & glib/glib/galiasdef.c
>
> Is there a way to solve the problem.
>
> Warm Regards,
> Arun S.

-- 
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:Urgent need for Oracle Financials Programmer Analyst@NY

2011-06-26 Thread vikram murari
** **

** **

Hi,
Greeting’s

Reply to mvik...@sureitinc.com  and vik.sur...@gmail.com.

** **

*Title: Oracle Financials Programmer Analyst*
*Location: Melville NY*
*Duration: 4-5+ Months*


*Must have OA Frame Work*


Oraclele Financials Programmer Analyst for a 4-5 month project .The
requirement is as follows:

· Extensive knowledge of AP and AR Ebusiness suite modules.
· Extensive work experience in SQL, PLSQL and Apps related
development.
· Good understanding and working experience with Xml Publisher, Java
Concurrent Program and development of OA framework pages.
· Understanding and exposure  of web services concept.


** **

* *

 *If interested please fill the following details:***


Full Name:

First Name:

Last Name:
Phone Number:
Home Number:
Email ID:
Availability:
Current Location:
Visa Status:
Relocation:
Face to face:
Last 4digits of SSN#:
DOB:
Employer details:

** **

 

** **

** **

Thanks & Regards,

*Vikram m*

[image: cid:image001.png@01CAF18B.E1179E10]

*SureIT Solutions Inc.
*1801 W Queen Creek RD | Suite # 3 | Chandler | AZ 85248
Phone:602-490-0106 FAX: 866-322-0121
*Email: mvik...@sureitinc.com *

 *vik.sur...@gmail.com*

http:// www.sureitinc.com

gtalk: vik.sureit

Yahoo IM: vikrammurari044

** **

[image: sws]


**

We offer genuine opportunities and try our best to provide legitimate
feedback in a timely manner. But the Clients take their own time reviewing
resumes and scheduling interviews. Hiring’s have slowed down in the recent
past and therefore please be tolerant while we go through the hoops.
 Please send only those candidates who have all the must have experiences
and can provide verifiable references from last 1-2 years of projects done
in US. 

*Please respond with only your pre-existing W2/H1 employees. We reserve the
right to work directly with all others.
*(The contents of this e-mail are confidential to the ordinary user of the
e-mail address to which it was addressed and may also be privileged. If the
reader of this message is not the intended recipient, any dissemination,
distribution or copying of the information contained in this Internet
message is strictly prohibited. If you have received this e-mail in error
please notify us by telephone or e-mail the sender by replying to this
message, and then delete the e-mail and other copies of it from your
computer system. Thank you. We believe this email to be virus free but do
not warrant that this is the case and we will not accept liability for any
losses arising from any virus being transmitted unintentionally by us.)

__


** **

** **

-- 
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: glib linker errors on gingerbread

2011-06-26 Thread Sammoh
Can you post your make file?

-- 
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] Changing the calendar for an existing event (Issue #10486)

2011-06-26 Thread Jeff Vincent
Is there a way to escalate this somehow?  Others besides myself are seeing 
this issue and it is highly annoying.  I just got an update a week or two to 
Android 2.3 (Gingerbread) on my EVO 4G and there is STILL no way to 
recategorize an existing appointment to a different calendar.
 
I see no activity from any developers regarding this issue and will gladly 
offer any help I can provide.  I'd try to fix it myself but haven't had the 
bandwidth to get bootstrapped to even know where the problem is.
 
http://code.google.com/p/android/issues/detail?id=10486
 
Thanks!!
 
Jeff

-- 
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] xoom usb conecting to win xp

2011-06-26 Thread nounou...@gmail.com
Please any 1 could help me setting the conecrion betweenxoom tablet by
motorola and my lenovo laptop " xp windows " I already tried the
drivers from motorola and it still gives me the message " a problem
occured while installing the drivers " 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] Apply image processing filtering on camera preview frames.

2011-06-26 Thread alexandros mouzakidis
Hi, i wan to create an android application that uses camera and apply
some image processing filters of mine in real time. I have read from
the forums that Camera.PreviewCallback method onPreviewFrame has only
a copy of image data and if i alter them it has no effect (i 've seen
that after some time of work) . So i want to know if there is anyway
that i have not found that i can process the real frames. Another
approach that i try is to hide the camera preview surface and draw the
frames onto another surface but i cant hide the surface. I have read
from the forums (an this one) that if i do not use the
mHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS); on the
usrfaceHolder then the surface view will be invisible but when i
remove this line of code or put SURFACE_TYPE_NURMAL as parameter my
application crashes. I have used only the emulator and i have not
tested it in my phone (galaxy s). My code is based on the code of
Google . If you can tell me what i do wrong or you can provide with
some code snippets that i can filter the frames it will be great help
because i have spent over 30hours on google search for that and still
no result

public class CameraPreview extends ViewGroup implements
SurfaceHolder.Callback, Camera.PreviewCallback {
private final String TAG = "Preview";

SurfaceView mSurfaceView;
SurfaceHolder mHolder;
Size mPreviewSize;
List mSupportedPreviewSizes;
Camera mCamera;

public CameraPreview(Context context) {
super(context);

mSurfaceView = new SurfaceView(context);
addView(mSurfaceView);

// Install a SurfaceHolder.Callback so we get notified when
the
// underlying surface is created and destroyed.
mHolder = mSurfaceView.getHolder();
mHolder.addCallback(this);
mHolder.setType(SurfaceHolder.SURFACE_TYPE_NORMAL);
//mHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
//mHolder.setType(SurfaceHolder.SURFACE_TYPE_GPU);
}

public void setCamera(Camera camera) {
mCamera = camera;
if (mCamera != null) {
mSupportedPreviewSizes =
mCamera.getParameters().getSupportedPreviewSizes();
requestLayout();
}
}

public void switchCamera(Camera camera) {
   setCamera(camera);
   try {
   camera.setPreviewDisplay(mHolder);
   } catch (IOException exception) {
   Log.e(TAG, "IOException caused by setPreviewDisplay()",
exception);
   }
   Camera.Parameters parameters = camera.getParameters();
   parameters.setPreviewSize(mPreviewSize.width,
mPreviewSize.height);
   requestLayout();

   camera.setParameters(parameters);
}

@Override
protected void onMeasure(int widthMeasureSpec, int
heightMeasureSpec) {
// We purposely disregard child measurements because act as a
// wrapper to a SurfaceView that centers the camera preview
instead
// of stretching it.
final int width = resolveSize(getSuggestedMinimumWidth(),
widthMeasureSpec);
final int height = resolveSize(getSuggestedMinimumHeight(),
heightMeasureSpec);
setMeasuredDimension(width, height);

if (mSupportedPreviewSizes != null) {
mPreviewSize =
getOptimalPreviewSize(mSupportedPreviewSizes, width, height);
}
}

@Override
protected void onLayout(boolean changed, int l, int t, int r, int
b) {
if (changed && getChildCount() > 0) {
final View child = getChildAt(0);

final int width = r - l;
final int height = b - t;

int previewWidth = width;
int previewHeight = height;
if (mPreviewSize != null) {
previewWidth = mPreviewSize.width;
previewHeight = mPreviewSize.height;
}

// Center the child SurfaceView within the parent.
if (width * previewHeight > height * previewWidth) {
final int scaledChildWidth = previewWidth * height /
previewHeight;
child.layout((width - scaledChildWidth) / 2, 0,
(width + scaledChildWidth) / 2, height);
} else {
final int scaledChildHeight = previewHeight * width /
previewWidth;
child.layout(0, (height - scaledChildHeight) / 2,
width, (height + scaledChildHeight) / 2);
}
}
}

public void surfaceCreated(SurfaceHolder holder) {
// The Surface has been created, acquire the camera and tell
it where
// to draw.
try {
if (mCamera != null) {
mCamera.setPreviewDisplay(holder);
}
} catch (IOException exception) {
Log.e(TAG, "IOException caused by setPreviewDisplay()",
exception);
}
}

public void surfaceDestroyed(SurfaceHolder holder) {
// Surface will be destroyed when we return, so stop the
preview.
if (mCamera != nul

[android-developers] Re:Urgent need for Web Methods developer @AZ

2011-06-26 Thread vikram murari
**

** **

** **

Hi,
Greeting’s

Reply to mvik...@sureitinc.com  and vik.sur...@gmail.com.

** **

*Title: Web Methods developer *

*Location: Chandler, AZ*

*Duration: 18+ Months*

*Rate:$40/hr*


Required: 

** **

Min 5+ years of webMethods 

Version: webMethods 7.1.2 preferred but development experience with wM 6.5
or higher will be considered

Hands on webMethods development, flow services,   TN built in services and
JDBC adapter.

Hands on experience in Trading Networks

Performance related experience will be a plus.

Product suite details: My WebMethods Server ver 712, Deployer ver 712, Clear
Case ver 7 or higher , Item field/Informatica Data Transaformation ver 8,
XSLT transformation, Oralce 10g,  Java 1.5 .

Team player with good communication and analytical skills needed. This
position requires a good understanding of the business and requires
coordination with different teams.

** **

 If interested please fill the following details:**


Full Name:

First Name:

Last Name:
Phone Number:
Home Number:
Email ID:
Availability:
Current Location:
Visa Status:
Relocation:
Face to face:
Last 4digits of SSN#:
DOB:
Employer details:

** **

 

** **

** **

Thanks & Regards,

Vikram m**

[image: cid:image001.png@01CAF18B.E1179E10]

*SureIT Solutions Inc.
*1801 W Queen Creek RD | Suite # 3 | Chandler | AZ 85248
Phone:602-490-0106 FAX: 866-322-0121
*Email: mvik...@sureitinc.com *

 vik.sur...@gmail.com**

http:// www.sureitinc.com

gtalk: vik.sureit

Yahoo IM: vikrammurari044

** **

[image: sws]


**

We offer genuine opportunities and try our best to provide legitimate
feedback in a timely manner. But the Clients take their own time reviewing
resumes and scheduling interviews. Hiring’s have slowed down in the recent
past and therefore please be tolerant while we go through the hoops.
 Please send only those candidates who have all the must have experiences
and can provide verifiable references from last 1-2 years of projects done
in US. 

*Please respond with only your pre-existing W2/H1 employees. We reserve the
right to work directly with all others.
*(The contents of this e-mail are confidential to the ordinary user of the
e-mail address to which it was addressed and may also be privileged. If the
reader of this message is not the intended recipient, any dissemination,
distribution or copying of the information contained in this Internet
message is strictly prohibited. If you have received this e-mail in error
please notify us by telephone or e-mail the sender by replying to this
message, and then delete the e-mail and other copies of it from your
computer system. Thank you. We believe this email to be virus free but do
not warrant that this is the case and we will not accept liability for any
losses arising from any virus being transmitted unintentionally by us.)

__


** **

** **

-- 
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:Urgent need for Sr Perl Scripter@IL(Remote)

2011-06-26 Thread vikram murari
** **

** **

Hi,
Greeting’s

Reply to mvik...@sureitinc.com  and vik.sur...@gmail.com.

** **

*Title: Sr Perl Scripter*

*Location: **Chicago IL*

*Duration: 6-9 Months*

Candidate can work remotely but prefers someone local to Chicago.* Must have
Senior level Perl scripting experience. *Please send along resume, rate,
contact information and location of your candidate to be considered. Must be
your employee.*  *

*Job Description:*

One of my clients is looking for a Perl Scripter for a 6-9 month project.
Prefer someone in the Chicago area to meet with other team members in the
area if needed but can work remotely anywhere.  Must be a solid Perl
Scripter that has some EMC storage background

*Must Have:*

**· **5+ years of programming in Perl 

**· **5+ years of completing projects to automate large scale
compute resource management

**· **5+ years of programming user interfaces with JavaScript, Java
applets and CGI 

**· **Expert with Apache Web Server modules, implementation and
configuration

*Desired Skills: *

**· **5+ years’ experience with software development methodologies *
***

**· **5+ years’ experience with open source tools

**· **3+ years MySQL programming experience 

**· **2+ years PHP programming experience

**· **2+ years Web Services API client and server programming
experience

** **

 If interested please fill the following details:**


Full Name:

First Name:

Last Name:
Phone Number:
Home Number:
Email ID:
Availability:
Current Location:
Visa Status:
Relocation:
Face to face:
Last 4digits of SSN#:
DOB:
Employer details:

** **

 

** **

** **

Thanks & Regards,

Vikram m**

[image: cid:image001.png@01CAF18B.E1179E10]

*SureIT Solutions Inc.
*1801 W Queen Creek RD | Suite # 3 | Chandler | AZ 85248
Phone:602-490-0106 FAX: 866-322-0121
*Email: mvik...@sureitinc.com *

 vik.sur...@gmail.com**

http:// www.sureitinc.com

gtalk: vik.sureit

Yahoo IM: vikrammurari044

** **

[image: sws]


**

We offer genuine opportunities and try our best to provide legitimate
feedback in a timely manner. But the Clients take their own time reviewing
resumes and scheduling interviews. Hiring’s have slowed down in the recent
past and therefore please be tolerant while we go through the hoops.
 Please send only those candidates who have all the must have experiences
and can provide verifiable references from last 1-2 years of projects done
in US. 

*Please respond with only your pre-existing W2/H1 employees. We reserve the
right to work directly with all others.
*(The contents of this e-mail are confidential to the ordinary user of the
e-mail address to which it was addressed and may also be privileged. If the
reader of this message is not the intended recipient, any dissemination,
distribution or copying of the information contained in this Internet
message is strictly prohibited. If you have received this e-mail in error
please notify us by telephone or e-mail the sender by replying to this
message, and then delete the e-mail and other copies of it from your
computer system. Thank you. We believe this email to be virus free but do
not warrant that this is the case and we will not accept liability for any
losses arising from any virus being transmitted unintentionally by us.)

__


** **

** **

-- 
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] android database remote access

2011-06-26 Thread kiran nayak
hi all
is it possible to access android database (sqlite) form a remote
client such as pc??

-- 
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] Is it possible to receive a notification whenever user launch some application ?

2011-06-26 Thread snilga
Hello,

I'm working on an application that should emit some user input events
(e.g. touch screen strike) when some condition occurs.
My application has different profiles each associated with some
application to it could emit different user input events depending on
what application is currently launched.
To be able to switch profiles my app needs to be informed when user
launches some application. How could I receive such notification in
Android ?

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] grab original image file from Camera intent

2011-06-26 Thread Grig
I have followed the instructions and everything is working fine with
the camera.  I can kick off the camera and get the Bitmap returned and
do with it what I want.


Is it possible to retrieve the actual path to the image file that was
taken by the camera?  I am seeing that is actually storing the image
under an Image*.jpg file name.

My application is making a new file from the bitmap, compressing it,
and storing it under my own application directory.

What I am trying to accomplish is if I delete my application picture,
I want to delete the picture stored by the camera itself.  Or pass in
a location where the camera can store the picture once its taken.

-- 
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] Image Editing through hue, saturation, contrast, sharpness, and brightness

2011-06-26 Thread ma
I'm trying to write an app that, when completed, will allow the user
to adjust the hue, saturation, etc. for a video by adjusting a seekbar
for each of those fields (i want to create something like this:
http://www.tipsquirrel.com/wp-content/uploads/2009/12/mood_step11.jpg).
For right now i'm starting small and trying to get these changes
working for an image but I don't know how to get started.

Does android already have a tool that adjusts hue, saturation,
contrast, etc.? or do i have to mess with the pixels in some way? If i
have to change the pixels, how would i go about doing that? I've
looked around and it seems that bitmap or colorToHSV should be useful,
but i'm not sure how to use them.

thanks for any help you guys can provide

-- 
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


Re: [android-developers] Aw: Data transfer server to client by using WiFi application in android

2011-06-26 Thread Farhan Tariq
Devices on same WiFi-LAN are no different than devices on any LAN. So your
java's server-client program should work fine after a few
adjustments. One suggestion though, inherit your server class from
"Service", instead of activity so that you don't run into problems arising
from different phases in activity lifecycle.

On Fri, Jun 24, 2011 at 1:59 PM, Michael Kuethe wrote:

> Kumar is right - nothing new in the socket coding. But potentially you have
> to face issue regarding the connected/disconnected Status.
> have a look at the class ConnectivityManager
> connectiviyManager = (ConnectivityManager) context
> .getSystemService(Context.CONNECTIVITY_SERVICE);
> and the NetworkInfo
> NetworkInfo ni = connectiviyManager.getActiveNetworkInfo();
>
>
> regards
>
> Michael
>
>  --
> 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
>

-- 
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

Re: [android-developers] Bluetooth Serial Port Question

2011-06-26 Thread Navindian
we are expecting a similar functionality from android.

On Fri, Jun 24, 2011 at 1:05 PM, Si wrote:

> Hi,
>
> Can someone point me in the right direction please?!
>
> I am trying to connect to an industrial product using Android over
> Bluetooth. The device does not support pairing. I have written an
> application in WM6.5 and that works fine.
>
> The sequence of events is:
>
> Discover device and establish a Bluetooth Serial connection (the
> device does not support passkeys/pairing).
> Request a key from the product (by sending a hex string)
> Read string and send back a response based on the key and a user
> entered password (by responding with another hex string).
>
> Is there an example anywhere that I can download?
>
> I have downloaded some BT serial terminal emulators but they all want
> to pair with the device.
>
> In Windows 7 you can simply search, connect and choose to connect
> without pairing and then the device appear as a BT serial port.
>
> 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

-- 
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] Apply image processing filtering on camera preview frames.

2011-06-26 Thread alexandros mouzakidis
Hi, i wan to create an android application that uses camera and apply
some image processing filters of mine in real time. I have read from
the forums that Camera.PreviewCallback method onPreviewFrame has only
a copy of image data and if i alter them it has no effect (i 've seen
that after some time of work) . So i want to know if there is anyway
that i have not found that i can process the real frames. Another
approach that i try is to hide the camera preview surface and draw the
frames onto another surface but i cant hide the surface. I have read
from the forums (an this one) that if i do not use the
mHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS); on the
usrfaceHolder then the surface view will be invisible but when i
remove this line of code or put SURFACE_TYPE_NURMAL as parameter my
application crashes. I have used only the emulator and i have not
tested it in my phone (galaxy s). My code is based on the code of
Google . If you can tell me what i do wrong or you can provide with
some code snippets that i can filter the frames it will be great help
because i have spent over 30hours on google search for that and still
no result

public class CameraPreview extends ViewGroup implements
SurfaceHolder.Callback, Camera.PreviewCallback {
private final String TAG = "Preview";

SurfaceView mSurfaceView;
SurfaceHolder mHolder;
Size mPreviewSize;
List mSupportedPreviewSizes;
Camera mCamera;

public CameraPreview(Context context) {
super(context);

mSurfaceView = new SurfaceView(context);
addView(mSurfaceView);

// Install a SurfaceHolder.Callback so we get notified when
the
// underlying surface is created and destroyed.
mHolder = mSurfaceView.getHolder();
mHolder.addCallback(this);
mHolder.setType(SurfaceHolder.SURFACE_TYPE_NORMAL);
//mHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
//mHolder.setType(SurfaceHolder.SURFACE_TYPE_GPU);
}

public void setCamera(Camera camera) {
mCamera = camera;
if (mCamera != null) {
mSupportedPreviewSizes =
mCamera.getParameters().getSupportedPreviewSizes();
requestLayout();
}
}

public void switchCamera(Camera camera) {
   setCamera(camera);
   try {
   camera.setPreviewDisplay(mHolder);
   } catch (IOException exception) {
   Log.e(TAG, "IOException caused by setPreviewDisplay()",
exception);
   }
   Camera.Parameters parameters = camera.getParameters();
   parameters.setPreviewSize(mPreviewSize.width,
mPreviewSize.height);
   requestLayout();

   camera.setParameters(parameters);
}

@Override
protected void onMeasure(int widthMeasureSpec, int
heightMeasureSpec) {
// We purposely disregard child measurements because act as a
// wrapper to a SurfaceView that centers the camera preview
instead
// of stretching it.
final int width = resolveSize(getSuggestedMinimumWidth(),
widthMeasureSpec);
final int height = resolveSize(getSuggestedMinimumHeight(),
heightMeasureSpec);
setMeasuredDimension(width, height);

if (mSupportedPreviewSizes != null) {
mPreviewSize =
getOptimalPreviewSize(mSupportedPreviewSizes, width, height);
}
}

@Override
protected void onLayout(boolean changed, int l, int t, int r, int
b) {
if (changed && getChildCount() > 0) {
final View child = getChildAt(0);

final int width = r - l;
final int height = b - t;

int previewWidth = width;
int previewHeight = height;
if (mPreviewSize != null) {
previewWidth = mPreviewSize.width;
previewHeight = mPreviewSize.height;
}

// Center the child SurfaceView within the parent.
if (width * previewHeight > height * previewWidth) {
final int scaledChildWidth = previewWidth * height /
previewHeight;
child.layout((width - scaledChildWidth) / 2, 0,
(width + scaledChildWidth) / 2, height);
} else {
final int scaledChildHeight = previewHeight * width /
previewWidth;
child.layout(0, (height - scaledChildHeight) / 2,
width, (height + scaledChildHeight) / 2);
}
}
}

public void surfaceCreated(SurfaceHolder holder) {
// The Surface has been created, acquire the camera and tell
it where
// to draw.
try {
if (mCamera != null) {
mCamera.setPreviewDisplay(holder);
}
} catch (IOException exception) {
Log.e(TAG, "IOException caused by setPreviewDisplay()",
exception);
}
}

public void surfaceDestroyed(SurfaceHolder holder) {
// Surface will be destroyed when we return, so stop the
preview.
if (mCamera != nul

[android-developers] Disable HDCP in Android 3.1

2011-06-26 Thread Pauland
Hello,
I try to make a video of my application through the HDMI output of my
Xoom but the HDCP is enabled in Android 3.1. Therefore impossible to
make a recording ...
How can we disable it?
Thank you

-- 
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


Re: [android-developers] Re: Install % not updating?

2011-06-26 Thread Nikolay Elenkov
On Mon, Jun 27, 2011 at 2:33 PM, Zsolt Vasvari  wrote:
> But if this were a generic problem, this would effect the ranking of
> all apps.  The fact that only mine (and yours) are dropping, but not
> the competitors are indication that this is not a problem with all
> apps.
>

Maybe. There's no real way to prove that the ranking drop is
a result of the install numbers not updating, since we don't
know the actual ranking algorithm. Even if it is, maybe it
affects only some apps, and not others (based on region,
publication date, or whatever). Maybe their datastores are
not replicating right in some places... Who knows. Maybe
the Android Market has gone sentient, and is just messing
around with people for the fun of it, or should I says lulz :)





> On Jun 27, 12:41 pm, Nikolay Elenkov 
> wrote:
>> On Mon, Jun 27, 2011 at 12:35 PM, Zsolt Vasvari  wrote:
>> > Is it only my app which has an install% not updating, but the download
>> > number is?
>>
>> Here we go again :) For a few days now (less than a week, I think),
>> only the total installs have been increasing, while the active installs
>> don't change. Since the install rate is derived, it's been dropping.
>> Ranking has dropped a couple of points too. So, no, you are
>> not alone :) It will probably level out in a few days, when maintenance
>> or whatever is done.
>>
>> > No new installs as
>>
>>  far as Google is concerned -> Install% going down ->> Ranking from #4 to #8 
>> --> Sales tanked
>>
>> > Of course, nobody at Google is responding.
>> >ed a couple of points, too. So, no, you are not
>>
>> alone :)> This has been going on
>>  for a week.
>>
>>
>>
>>
>>
>> > --
>> > 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- Hide quoted text -
>>
>> - Show quoted text -
>
> --
> 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

-- 
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: Hi-Launch time

2011-06-26 Thread Zsolt Vasvari
He wants to chat you up.  At least make him buy you a couple of drinks
or something.

On Jun 27, 1:30 pm, Kumar Bibek  wrote:
> Time till ?
> 1. Browser is visible?
> 2. WebPage starts loading?
> 3. Scripts end loading?
> 4. Page loading complete?
>
> *Thanks and Regards,
> Kumar Bibek*
> *http://techdroid.kbeanie.comhttp://www.kbeanie.com*
>
>
>
> On Mon, Jun 27, 2011 at 10:58 AM, guru sagar  wrote:
> > launch time for android browser .
>
> > On Mon, Jun 27, 2011 at 10:47 AM, Kumar Bibek wrote:
>
> >> App Launch time in in-built browser? Still, I am not sure what is your
> >> question.
>
> >> *Thanks and Regards,
> >> Kumar Bibek*
> >> *
> >>http://techdroid.kbeanie.com
> >>http://www.kbeanie.com*
>
> >> On Mon, Jun 27, 2011 at 10:45 AM, guru sagar wrote:
>
> >>> i want to check the app launch time for in built browser for varoius
> >>> devices .
> >>> Is it possible
>
> >>> On Mon, Jun 27, 2011 at 10:40 AM, Kumar Bibek wrote:
>
>  Launch time?
>  What does that mean exactly?
>
>  *Thanks and Regards,
>  Kumar Bibek*
>  *
> http://techdroid.kbeanie.com
> http://www.kbeanie.com*
>
>  On Mon, Jun 27, 2011 at 10:39 AM, guru sagar 
>  wrote:
>
> > Hi developers ,
>
> >                           I want to check the launch time for in built
> > browser ?. am not getting callbacks for the in built browser
>
> > Thanksinadvance
>
> > --
> > Thanks,
> > Gurusagar
>
> >  --
> > 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
>
>   --
>  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
>
> >>> --
> >>> Thanks,
> >>> Gurusagar
>
> >>>  --
> >>> 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
>
> >>  --
> >> 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
>
> > --
> > Thanks,
> > Gurusagar
>
> >  --
> > 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- Hide quoted text -
>
> - Show quoted text -

-- 
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


Re: [android-developers] Hi-Launch time

2011-06-26 Thread Kumar Bibek
I don't think you can do that. The browser app is not in your control.

*Thanks and Regards,
Kumar Bibek*
*
http://techdroid.kbeanie.com
http://www.kbeanie.com*



On Mon, Jun 27, 2011 at 11:03 AM, guru sagar  wrote:

> when browser is visible ,
>
> On Mon, Jun 27, 2011 at 11:00 AM, Kumar Bibek wrote:
>
>> Time till ?
>> 1. Browser is visible?
>> 2. WebPage starts loading?
>> 3. Scripts end loading?
>> 4. Page loading complete?
>>
>>
>>
>> *Thanks and Regards,
>> Kumar Bibek*
>> *
>> http://techdroid.kbeanie.com
>> http://www.kbeanie.com*
>>
>>
>>
>> On Mon, Jun 27, 2011 at 10:58 AM, guru sagar wrote:
>>
>>> launch time for android browser .
>>>
>>> On Mon, Jun 27, 2011 at 10:47 AM, Kumar Bibek wrote:
>>>
 App Launch time in in-built browser? Still, I am not sure what is your
 question.


 *Thanks and Regards,
 Kumar Bibek*
 *
 http://techdroid.kbeanie.com
 http://www.kbeanie.com*



 On Mon, Jun 27, 2011 at 10:45 AM, guru sagar wrote:

> i want to check the app launch time for in built browser for varoius
> devices .
> Is it possible
>
>
>
> On Mon, Jun 27, 2011 at 10:40 AM, Kumar Bibek wrote:
>
>> Launch time?
>> What does that mean exactly?
>>
>> *Thanks and Regards,
>> Kumar Bibek*
>> *
>> http://techdroid.kbeanie.com
>> http://www.kbeanie.com*
>>
>>
>>
>> On Mon, Jun 27, 2011 at 10:39 AM, guru sagar 
>> wrote:
>>
>>> Hi developers ,
>>>
>>>
>>>   I want to check the launch time for in
>>> built browser ?. am not getting callbacks for the in built browser
>>>
>>>
>>> Thanksinadvance
>>>
>>> --
>>> Thanks,
>>> Gurusagar
>>>
>>>
>>>
>>>
>>>
>>>
>>>  --
>>> 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
>>
>>
>>  --
>> 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
>
>
>
>
> --
> Thanks,
> Gurusagar
>
>
>
>
>
>
>  --
> 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
>

  --
 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

>>>
>>>
>>>
>>> --
>>> Thanks,
>>> Gurusagar
>>>
>>>
>>>
>>>
>>>
>>>
>>>  --
>>> 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
>>>
>>
>>  --
>> 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
>>
>
>
>
> --
> Thanks,
> Gurusagar
>
>
>
>
>
>
>  --
> 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

-- 
You received this message because you are subscribed 

[android-developers] Re: Install % not updating?

2011-06-26 Thread Zsolt Vasvari
But if this were a generic problem, this would effect the ranking of
all apps.  The fact that only mine (and yours) are dropping, but not
the competitors are indication that this is not a problem with all
apps.

On Jun 27, 12:41 pm, Nikolay Elenkov 
wrote:
> On Mon, Jun 27, 2011 at 12:35 PM, Zsolt Vasvari  wrote:
> > Is it only my app which has an install% not updating, but the download
> > number is?
>
> Here we go again :) For a few days now (less than a week, I think),
> only the total installs have been increasing, while the active installs
> don't change. Since the install rate is derived, it's been dropping.
> Ranking has dropped a couple of points too. So, no, you are
> not alone :) It will probably level out in a few days, when maintenance
> or whatever is done.
>
> > No new installs as
>
>  far as Google is concerned -> Install% going down ->> Ranking from #4 to #8 
> --> Sales tanked
>
> > Of course, nobody at Google is responding.
> >ed a couple of points, too. So, no, you are not
>
> alone :)> This has been going on
>  for a week.
>
>
>
>
>
> > --
> > 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- Hide quoted text -
>
> - Show quoted text -

-- 
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


Re: [android-developers] Hi-Launch time

2011-06-26 Thread guru sagar
when browser is visible ,

On Mon, Jun 27, 2011 at 11:00 AM, Kumar Bibek  wrote:

> Time till ?
> 1. Browser is visible?
> 2. WebPage starts loading?
> 3. Scripts end loading?
> 4. Page loading complete?
>
>
>
> *Thanks and Regards,
> Kumar Bibek*
> *
> http://techdroid.kbeanie.com
> http://www.kbeanie.com*
>
>
>
> On Mon, Jun 27, 2011 at 10:58 AM, guru sagar wrote:
>
>> launch time for android browser .
>>
>> On Mon, Jun 27, 2011 at 10:47 AM, Kumar Bibek wrote:
>>
>>> App Launch time in in-built browser? Still, I am not sure what is your
>>> question.
>>>
>>>
>>> *Thanks and Regards,
>>> Kumar Bibek*
>>> *
>>> http://techdroid.kbeanie.com
>>> http://www.kbeanie.com*
>>>
>>>
>>>
>>> On Mon, Jun 27, 2011 at 10:45 AM, guru sagar wrote:
>>>
 i want to check the app launch time for in built browser for varoius
 devices .
 Is it possible



 On Mon, Jun 27, 2011 at 10:40 AM, Kumar Bibek wrote:

> Launch time?
> What does that mean exactly?
>
> *Thanks and Regards,
> Kumar Bibek*
> *
> http://techdroid.kbeanie.com
> http://www.kbeanie.com*
>
>
>
> On Mon, Jun 27, 2011 at 10:39 AM, guru sagar 
> wrote:
>
>> Hi developers ,
>>
>>
>>   I want to check the launch time for in built
>> browser ?. am not getting callbacks for the in built browser
>>
>>
>> Thanksinadvance
>>
>> --
>> Thanks,
>> Gurusagar
>>
>>
>>
>>
>>
>>
>>  --
>> 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
>
>
>  --
> 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




 --
 Thanks,
 Gurusagar






  --
 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

>>>
>>>  --
>>> 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
>>>
>>
>>
>>
>> --
>> Thanks,
>> Gurusagar
>>
>>
>>
>>
>>
>>
>>  --
>> 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
>>
>
>  --
> 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
>



-- 
Thanks,
Gurusagar

-- 
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

Re: [android-developers] Hi-Launch time

2011-06-26 Thread Kumar Bibek
Time till ?
1. Browser is visible?
2. WebPage starts loading?
3. Scripts end loading?
4. Page loading complete?


*Thanks and Regards,
Kumar Bibek*
*
http://techdroid.kbeanie.com
http://www.kbeanie.com*



On Mon, Jun 27, 2011 at 10:58 AM, guru sagar  wrote:

> launch time for android browser .
>
> On Mon, Jun 27, 2011 at 10:47 AM, Kumar Bibek wrote:
>
>> App Launch time in in-built browser? Still, I am not sure what is your
>> question.
>>
>>
>> *Thanks and Regards,
>> Kumar Bibek*
>> *
>> http://techdroid.kbeanie.com
>> http://www.kbeanie.com*
>>
>>
>>
>> On Mon, Jun 27, 2011 at 10:45 AM, guru sagar wrote:
>>
>>> i want to check the app launch time for in built browser for varoius
>>> devices .
>>> Is it possible
>>>
>>>
>>>
>>> On Mon, Jun 27, 2011 at 10:40 AM, Kumar Bibek wrote:
>>>
 Launch time?
 What does that mean exactly?

 *Thanks and Regards,
 Kumar Bibek*
 *
 http://techdroid.kbeanie.com
 http://www.kbeanie.com*



 On Mon, Jun 27, 2011 at 10:39 AM, guru sagar wrote:

> Hi developers ,
>
>
>   I want to check the launch time for in built
> browser ?. am not getting callbacks for the in built browser
>
>
> Thanksinadvance
>
> --
> Thanks,
> Gurusagar
>
>
>
>
>
>
>  --
> 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


  --
 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
>>>
>>>
>>>
>>>
>>> --
>>> Thanks,
>>> Gurusagar
>>>
>>>
>>>
>>>
>>>
>>>
>>>  --
>>> 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
>>>
>>
>>  --
>> 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
>>
>
>
>
> --
> Thanks,
> Gurusagar
>
>
>
>
>
>
>  --
> 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
>

-- 
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

Re: [android-developers] Hi-Launch time

2011-06-26 Thread guru sagar
Hi Kumar ,

   If you dont mine shall i send chat request to you .

On Mon, Jun 27, 2011 at 10:58 AM, guru sagar  wrote:

> launch time for android browser .
>
> On Mon, Jun 27, 2011 at 10:47 AM, Kumar Bibek wrote:
>
>> App Launch time in in-built browser? Still, I am not sure what is your
>> question.
>>
>>
>> *Thanks and Regards,
>> Kumar Bibek*
>> *
>> http://techdroid.kbeanie.com
>> http://www.kbeanie.com*
>>
>>
>>
>> On Mon, Jun 27, 2011 at 10:45 AM, guru sagar wrote:
>>
>>> i want to check the app launch time for in built browser for varoius
>>> devices .
>>> Is it possible
>>>
>>>
>>>
>>> On Mon, Jun 27, 2011 at 10:40 AM, Kumar Bibek wrote:
>>>
 Launch time?
 What does that mean exactly?

 *Thanks and Regards,
 Kumar Bibek*
 *
 http://techdroid.kbeanie.com
 http://www.kbeanie.com*



 On Mon, Jun 27, 2011 at 10:39 AM, guru sagar wrote:

> Hi developers ,
>
>
>   I want to check the launch time for in built
> browser ?. am not getting callbacks for the in built browser
>
>
> Thanksinadvance
>
> --
> Thanks,
> Gurusagar
>
>
>
>
>
>
>  --
> 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


  --
 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
>>>
>>>
>>>
>>>
>>> --
>>> Thanks,
>>> Gurusagar
>>>
>>>
>>>
>>>
>>>
>>>
>>>  --
>>> 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
>>>
>>
>>  --
>> 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
>>
>
>
>
> --
> Thanks,
> Gurusagar
>
>
>
>
>
>
>


-- 
Thanks,
Gurusagar

-- 
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

Re: [android-developers] Hi-Launch time

2011-06-26 Thread guru sagar
launch time for android browser .

On Mon, Jun 27, 2011 at 10:47 AM, Kumar Bibek  wrote:

> App Launch time in in-built browser? Still, I am not sure what is your
> question.
>
>
> *Thanks and Regards,
> Kumar Bibek*
> *
> http://techdroid.kbeanie.com
> http://www.kbeanie.com*
>
>
>
> On Mon, Jun 27, 2011 at 10:45 AM, guru sagar wrote:
>
>> i want to check the app launch time for in built browser for varoius
>> devices .
>> Is it possible
>>
>>
>>
>> On Mon, Jun 27, 2011 at 10:40 AM, Kumar Bibek wrote:
>>
>>> Launch time?
>>> What does that mean exactly?
>>>
>>> *Thanks and Regards,
>>> Kumar Bibek*
>>> *
>>> http://techdroid.kbeanie.com
>>> http://www.kbeanie.com*
>>>
>>>
>>>
>>> On Mon, Jun 27, 2011 at 10:39 AM, guru sagar wrote:
>>>
 Hi developers ,


   I want to check the launch time for in built
 browser ?. am not getting callbacks for the in built browser


 Thanksinadvance

 --
 Thanks,
 Gurusagar






  --
 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
>>>
>>>
>>>  --
>>> 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
>>
>>
>>
>>
>> --
>> Thanks,
>> Gurusagar
>>
>>
>>
>>
>>
>>
>>  --
>> 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
>>
>
>  --
> 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
>



-- 
Thanks,
Gurusagar

-- 
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

Re: [android-developers] Hi-Launch time

2011-06-26 Thread Kumar Bibek
App Launch time in in-built browser? Still, I am not sure what is your
question.

*Thanks and Regards,
Kumar Bibek*
*
http://techdroid.kbeanie.com
http://www.kbeanie.com*



On Mon, Jun 27, 2011 at 10:45 AM, guru sagar  wrote:

> i want to check the app launch time for in built browser for varoius
> devices .
> Is it possible
>
>
>
> On Mon, Jun 27, 2011 at 10:40 AM, Kumar Bibek wrote:
>
>> Launch time?
>> What does that mean exactly?
>>
>> *Thanks and Regards,
>> Kumar Bibek*
>> *
>> http://techdroid.kbeanie.com
>> http://www.kbeanie.com*
>>
>>
>>
>> On Mon, Jun 27, 2011 at 10:39 AM, guru sagar wrote:
>>
>>> Hi developers ,
>>>
>>>
>>>   I want to check the launch time for in built
>>> browser ?. am not getting callbacks for the in built browser
>>>
>>>
>>> Thanksinadvance
>>>
>>> --
>>> Thanks,
>>> Gurusagar
>>>
>>>
>>>
>>>
>>>
>>>
>>>  --
>>> 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
>>
>>
>>  --
>> 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
>
>
>
>
> --
> Thanks,
> Gurusagar
>
>
>
>
>
>
>  --
> 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
>

-- 
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

Re: [android-developers] Hi-Launch time

2011-06-26 Thread guru sagar
i want to check the app launch time for in built browser for varoius devices
.
Is it possible


On Mon, Jun 27, 2011 at 10:40 AM, Kumar Bibek  wrote:

> Launch time?
> What does that mean exactly?
>
> *Thanks and Regards,
> Kumar Bibek*
> *
> http://techdroid.kbeanie.com
> http://www.kbeanie.com*
>
>
>
> On Mon, Jun 27, 2011 at 10:39 AM, guru sagar wrote:
>
>> Hi developers ,
>>
>>
>>   I want to check the launch time for in built
>> browser ?. am not getting callbacks for the in built browser
>>
>>
>> Thanksinadvance
>>
>> --
>> Thanks,
>> Gurusagar
>>
>>
>>
>>
>>
>>
>>  --
>> 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
>
>
>  --
> 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




-- 
Thanks,
Gurusagar

-- 
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

Re: [android-developers] Hi-Launch time

2011-06-26 Thread Kumar Bibek
Launch time?
What does that mean exactly?

*Thanks and Regards,
Kumar Bibek*
*
http://techdroid.kbeanie.com
http://www.kbeanie.com*



On Mon, Jun 27, 2011 at 10:39 AM, guru sagar  wrote:

> Hi developers ,
>
>
>   I want to check the launch time for in built
> browser ?. am not getting callbacks for the in built browser
>
>
> Thanksinadvance
>
> --
> Thanks,
> Gurusagar
>
>
>
>
>
>
>  --
> 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

-- 
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] Hi-Launch time

2011-06-26 Thread guru sagar
Hi developers ,


  I want to check the launch time for in built
browser ?. am not getting callbacks for the in built browser


Thanksinadvance

-- 
Thanks,
Gurusagar

-- 
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: weird behaviour while overriding FrameLayout.dispatchDraw() on a view that contains a scrollview

2011-06-26 Thread rukiman
Do you know why calling view.draw() on a scrollview draws the screen
disregarding the current scrollY and assumes the scrollview is at the
beginning always?

On Jun 24, 10:14 am, Romain Guy  wrote:
> The drawing cache is per view, so if you need to capture several views
> (sibling, and not a subtree like you are doing in your example) if
> would be better to allocate a single bitmap. This works of course only
> if all the views have the same size.
>
>
>
>
>
>
>
>
>
> On Thu, Jun 23, 2011 at 5:06 PM,rukiman wrote:
> > I am suspecting using the view cache system causes the view system to
> > allocate memory for the view.
> > Now lets say I can to capture 3 views, does that mean memory is
> > allocated for 3 views worth of caches if I don't destroy the cache?
>
> > Also I noticed through profiling that this code runs around 100ms
> > view.setDrawingCacheEnabled(true);
> >        view.setDrawingCacheQuality(View.DRAWING_CACHE_QUALITY_HIGH);
> >        view.setDrawingCacheBackgroundColor(Color.BLACK);
> >        Bitmap bitmap = view.getDrawingCache();
> >        Bitmap retVal = bitmap == null ? null :
> > bitmap.copy(bitmap.getConfig(), false);
> >        view.destroyDrawingCache();
> >        view.setDrawingCacheEnabled(false);
> >        return retVal;
>
> > while this runs at around 60ms
> > mCanvas.setBitmap(mBitmapCapture);
> >   view.draw(mCanvas);
> >   Bitmap retVal = mBitmapCapture;
>
> > I have to capture a few views and trying to speed them as quick as
> > possible and at the same time not use much memory. I guess the slight
> > speed difference is in enabling and destroying the view drawing cache?
> > What is the effect of not destroying it? Does that mean it will suffer
> > from my approach above that is double the workload on each frame as
> > well?
>
> > Going back to my approach my code is just as I pasted it, should I be
> > saving the canvas and restoring it in the dispatchDraw? Any help is
> > appreciated. Thanks.
>
> > On Jun 24, 9:47 am, Romain Guy  wrote:
> >> It's either because you don't properly save/restore the state of your
> >> offline Canvas or maybe because of the bitmap config (although it
> >> should work just fine in 565.)
>
> >> What I don't understand however is why you refuse to use the drawing
> >> cache API that already exists for this purpose? Using this API will
> >> not necessarily force another redraw of the view. With the drawing
> >> cache, the cache is automatically redrawn whenever the view changes.
> >> Your approach however doubles the workload on *every* frame.
>
> >> On Thu, Jun 23, 2011 at 4:23 PM,rukiman wrote:
> >> > I am trying to understand which this code which works perfectly for
> >> > capturing almost any view except if there is a ScrollView in the
> >> > framelayout, in this case there is a slight issue with the top and
> >> > bottom areas where scrollview fades its contents. There is some
> >> > corruption occurring.
>
> >> > public class FrameLayoutWithOfflineBitmap extends FrameLayout {
>
> >> >        private Bitmap mOfflineBitmap;
> >> >        private Canvas mOfflineCanvas;
>
> >> >        public FrameLayoutWithOfflineBitmap(Context context) {
> >> >                super(context);
> >> >        }
>
> >> >        @Override
> >> >        public void onSizeChanged(int w, int h, int oldw, int oldh) {
> >> >                // just in case we already had the bitmap allocated before
> >> >                if(mOfflineBitmap != null) {
> >> >                        mOfflineBitmap.recycle();
> >> >                }
> >> >                mOfflineBitmap = Bitmap.createBitmap(w, h, 
> >> > Bitmap.Config.RGB_565);
> >> >                mOfflineCanvas = new Canvas();
> >> >                mOfflineCanvas.setBitmap(mOfflineBitmap);
> >> >        }
>
> >> >        @Override
> >> >        public void dispatchDraw(Canvas canvas) {
> >> >                // draw to our offline bitmap
> >> >                super.dispatchDraw(mOfflineCanvas);
> >> >                // now draw our offline bitmap to the system canvas
> >> >                canvas.drawBitmap(mOfflineBitmap, 0, 0, null);
> >> >        }
>
> >> >        public Bitmap getScreenSnapshot() {
> >> >                return mOfflineBitmap;
> >> >        }
> >> > }
>
> >> > I understand there are other ways to capture the view such as using
> >> > the View's drawing cache, but I am not interested in this method. Can
> >> > someone explain to me what is going on here and if there is way to
> >> > address this issue? Basically I am trying to get access to a snapshot
> >> > of a view as quick as possible. My idea is that the view is already
> >> > drawn onto the screen, we should be able to get access to this without
> >> > having to force another redundant redraw of the view.
>
> >> > I am also very keen to understand the flaw with the above code in
> >> > terms of the scrollview. Thanks.
>
> >> > --
> >> > You received this message because you are subscribed to the Google
> >> > Groups "Android Developers" group.
> >> 

Re: [android-developers] Install % not updating?

2011-06-26 Thread Nikolay Elenkov
On Mon, Jun 27, 2011 at 12:35 PM, Zsolt Vasvari  wrote:
> Is it only my app which has an install% not updating, but the download
> number is?
>

Here we go again :) For a few days now (less than a week, I think),
only the total installs have been increasing, while the active installs
don't change. Since the install rate is derived, it's been dropping.
Ranking has dropped a couple of points too. So, no, you are
not alone :) It will probably level out in a few days, when maintenance
or whatever is done.


> No new installs as
 far as Google is concerned -> Install% going down -
>> Ranking from #4 to #8 --> Sales tanked
>
> Of course, nobody at Google is responding.
>ed a couple of points, too. So, no, you are not
alone :)> This has been going on
 for a week.
>

> --
> 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

-- 
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: Looking for tester of Android application

2011-06-26 Thread Zsolt Vasvari
Come again?

On Jun 27, 12:03 pm, Дениска, Рынский (из за Угла)
 wrote:
> I am interested to find people who create web application packaged as war
> and ear files to run directly on ANdroid devices. If somebody can share any
> information,  I really appreciate. I develped application server running on
> Android devices and I want just make sure it can run arbitrary any
> application, not only applications from my set.

-- 
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


  1   2   >