[android-developers] 64-Bit support for WearOS

2021-05-12 Thread Sid Nair
Hi,

I wanted to understand platform support for WearOS. I couldn't find any 
documentation with regards to whether WearOS supports 64-bit platforms. I 
couldn't find any emulators with 64-bit images either. I was wondering if 
64-bit applications are supported by WearOS, or if it is part of the 
roadmap?

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/bce4f6db-ee4a-4518-bd97-e953ca7e85d0n%40googlegroups.com.


[android-developers] is android studio compatible with windows 10 latest november update

2016-02-04 Thread Ashar sid
hello folks,

I'm using windows 10 latest november update and I downloaded the android 
studio when I was using windows 7 ultimate and android studio was working 
seamlessly on it but later that I upgraded my laptop to latest but I 
couldn't install that android studio version
so plz help me on it

the version i was using is:
android-studio-bundle-141.2422023-windows

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/29bacb34-0ad5-4e72-b2f0-24cf922b7078%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: hierarchical parent error

2012-11-06 Thread Sid Vyas
Open your Android SDK Manager,Uninstall Android Support Library and then 
again Install it..Hope it helps.

Thanks

On Friday, August 3, 2012 8:03:44 AM UTC+5:30, imran wrote:
>
> I got an error of hierarchical parent while i was trying to create a new 
> project. I am not sure what to give in the hierarchical parent text field 
> while creating a new project. it shows a red cross but when i give any text 
> it removes the red cross but it doesnt create the R. file in project. plz 
> 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] Not able to compose a message in Motorola XT925 device.

2012-11-06 Thread Sid Vyas
Hi,

I am not able to compose a message in Motorola XT925 device.

My code is as follows :

*Intent smsIntent = new Intent(Intent.ACTION_VIEW);
smsIntent.putExtra("sms_body", "My message");
smsIntent.setType("vnd.android-dir/mms-sms");
startActivity(smsIntent);*

When I execute the code in Motorola XT925, the body of the message shows 
blank text in message box.
If I run this code in any of the devices except Motorola XT925,it runs 
perfectly and shows output "*My message"* in message box.
Please help.

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] Not able to compose a message from Motorola XT925 device.

2012-11-06 Thread Sid Vyas
Hi,

I am not able to compose a message from Motorola XT925 device.

My code is as follows:

   * Intent smsIntent = new Intent(Intent.ACTION_VIEW);
smsIntent.putExtra("sms_body", "My Message");
smsIntent.setType("vnd.android-dir/mms-sms");
startActivity(smsIntent);*

I am able to run this code on all devices and it shows me the message body 
as "My Message" but it does no show it on " Motorola XT925"
Please help.

Regards,
Siddharth Vyas

-- 
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] Reading encrypted video data from mediaplayer

2012-02-20 Thread Sid
According to the link 
http://developer.android.com/guide/appendix/media-formats.html
android media player can support RTSP for all versions of android. My
server will transmit the encrypted data to the client (android device
here) as it has propriety content. I want to know whether media player
can read the encrypted data. If yes, how to prepare the media player
so that it can read the encrypted data. If not, what is the preferred
way (or protocol) to read encrypted data on android native media
player?

-- 
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] Ant Build issue

2011-10-18 Thread sid
Hi everybody

I am trying to compile simple Hello World program mentioned in the
website.My Ant is not able to compile the code , it wants version
1.8.0 or higher version. I have downloaded almost all tye of ants from
Apache website

1.  all the binaries are 1.7 version
2.  source code I am not able to compile getting following error
... Bootstrapping Ant Distribution
... Compiling Ant Classes
Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/
tools/javac/Main
Caused by: java.lang.ClassNotFoundException: com.sun.tools.javac.Main
at java.net.URLClassLoader$1.run(URLClassLoader.java:217)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
at java.lang.ClassLoader.loadClass(ClassLoader.java:321)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:
294)
at java.lang.ClassLoader.loadClass(ClassLoader.java:266)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:
334)
Could not find the main class: com.sun.tools.javac.Main. Program will
exit.
... Failed compiling Ant classes !
Bootstrap FAILED

for these errors , i have tried defining class path.

Regards
Sidharth Rai

-- 
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] Programatically change the color of layout

2011-02-24 Thread Sid
Hello All,
I am trying to programatically change the layout color but of a
relative layout (tried Linear layout but didn't change), but cannot
change it.

Also trying to debug the app doesn't help, there was not message
related to my TAG.

the application stood still after layout was colored initially.

"rellay" is id of Relative Layout.

package com.test.intentdemo;

import android.app.Activity;
import android.graphics.Color;
import android.os.Bundle;
//import android.os.SystemClock;
import android.widget.RelativeLayout;
import android.util.*;
import java.lang.Thread;

public class intentDemo extends Activity {
/** Called when the activity is first created. */
RelativeLayout lLayout;
public static final String TAG="MyActivity";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
lLayout = (RelativeLayout) findViewById(R.id.rellay);
if (Log.isLoggable(TAG,0))
{
Log.e(TAG,"ERROR BEFORE");
Log.i(TAG,"INFO BEFORE");
Log.d(TAG,"DEBUG BEFORE");

lLayout.setBackgroundColor(Color.parseColor("#00"));
//SystemClock.sleep(2000);
try
{
Thread.currentThread();
Thread.sleep(2000);
}
catch (Exception e)
{
//e.message();
}


Log.e(TAG,"ERROR AFTER");
Log.i(TAG,"INFO AFTER");
Log.d(TAG,"DEBUG AFTER");
}
}
}

Any help regarding this would be helpful.

Thanks,
Sid

-- 
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] Exerciser Monkey and media volume

2010-12-21 Thread Sid
Hi There,

I've been running the Exerciser Monkey on a couple of apps, and it has
been a tremendous help in exposing a couple of issues that I didn't
know existed.

The problem is that it seems to be turning on my music/media player,
and adjusting the media volume while it is testing an app that does
not use any media devices.

i.e. it turns on my music and turns up the volume.

I've tried setting
setVolumeControlStream(AudioManager.STREAM_NOTIFICATION);

to at least force the volume controls to leave the media device alone,
but for some reason it  seems to get reset to the media volume at some
point (perhaps I'm not setting the above parameter in all activities?)

Does anyone know how to turn this feature of the Exerciser Monkey off?
I just want this to run in silence.

Honestly, I don't care about the volume, but why does it start the
music?

Thanks,

Sid

-- 
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 Developer – English S peaking

2010-08-05 Thread Sid
Android Developer –Sweden/ US  –English Speaking My client a leading
Blue Chip organization is currently looking for Android developers,
you must have 1+ years experience in Application development on
Android and 3+ years in Java/C++ is must. Experience with Meamo and QT
will be an added advantage. English is the project language, length 12
months + possible extension.

Intrested consultants kindly send your profiles to
sid.j...@r2international.com.

Regards,
Sid Jain

-- 
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 Developers Needed!!

2010-07-31 Thread Sid
Urgently looking for Senior Android Developers to work in Sweden and
Finland. Kindly send me your updated CV in a word format OR who else
do you think can do this job?

Best regards,

Sid Jain
Recruitment Consultant

R2 International Ltd
United Kingdom

Tel: +44 (0)207 100 2312
Fax: +44 (0)870 490 6845
Email: yana.jo...@r2international.com
Web: http://www.r2international.com

Sweden +46 850638351 | Germany +49 6946051 | Belgium +32 24019203

-- 
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 Developers Needed!!

2010-07-31 Thread Sid
My client a leading blue chip company in urgently looking for Android
Developers in Finland and Sweden. Consultnats who are immediatky
available kindly send your CVs to sid.j...@r2international.com. you
can also call me on +44 207 100 2312, +46 8 506 38351.

-- 
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] Setting via the Java API the height/width of a spinner in pixels

2010-05-18 Thread Sid
Hi - I tried doing this as this:



 final Spinner dayText=new Spinner(this);
ArrayAdapter adapter = new ArrayAdapter(this,
android.R.layout.simple_dropdown_item_1line,
DAY_OPTIONS);
dayText.setAdapter(adapter);
dayText.getLayoutParams().height=45;



This didn't work. Any ideas on how I can use the Java API to set the
width/height of a spinner object?

Thanks,

-Sid

p.s.: The spinner displays properly in my app if I don't bother about
the width and height

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


[android-developers] accessing database on server side

2010-03-18 Thread sid
Hi All,

I'm having a problem in accessing a database on remote server from my
android application.
In some blogs i found that by using Webservices we can do it.
but i dont know what are webservices?
Can any one help me how do i do that?

Thanks in advance
Sid

-- 
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] Acivities are getting stacked on top of each other

2010-02-22 Thread wakeup sid
The same problem i have faced previously.. but after i use finish() method
on activity then the problem has resolved..
when moving from one screen to another just use finish() on screen1.. then
the problem will be solved..
Please let me know if im wrong..

On Tue, Feb 23, 2010 at 1:13 PM, umesh chalwetkar wrote:

> Hi,
>
> I have three UI screens A, B and C.
> When I click on A it goes to B,
> when click on B it goes to C,
> again if you click on C it goes to B so this is kind of loop.
> I have tried following
> EX. B->C->B->C->B->C->B->*C->*
> Now I am on Screen C, when I click back it should go to B, again when I
> click back it should go to A.
>
> This is not happening the way it is happening is like this, from* C->
> click back->*B->*click back->C*->*click back->*B->*click back->*C->*click
> back->*B->*click back->C*->*click back->*B->*click back->A
>
> *Please suggest me how to solve this problem.
>
> Thanks,
> Umesh
>
> --
> 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] Re: Soft Keyboard Shrinks Dialog Buttons

2010-02-22 Thread wakeup sid
Hi Todd..
Im also getting the problem like you..yesterday i posted the same question..

How to design a layout when a soft keyboard is opened??
Am having a requirement that when a keyboard is opened my layout view
is to be automatically changed according to the screen size.

Currently in my application when soft keyboard is opened it is hiding
some buttons..
so how do i overcome that???

if u have any answer for this please let me know..
if u want i will provide my .XML file also..

On Mon, Feb 22, 2010 at 5:47 PM, Todd S.  wrote:

> Answering my own question, had to switch it from a Relative Layout to
> a Linear Layout and problem solved.  Also, didn't need to define a
> Bottom Margin for the Scrollview, but gave it a Layout Weight of "1",
> while the table layout with the buttons had the default Layout Weight.
>
> On Feb 19, 10:22 pm, "Todd S."  wrote:
> > I have a full screen dialog that has a relative layout that contains a
> > TableLayout. Whenever the soft keyboard is displayed on the screen, it
> > shrinks these buttons. Instead of filling the bottom of the screen,
> > they only fill a third of it. How can I keep the size of the buttons
> > the same similar to the Contact app?
> >
> > 
> > http://schemas.android.com/apk/res/
> > android"
> > android:fitsSystemWindows="true"
> android:layout_width="fill_parent"
> > android:layout_height="fill_parent">
> >  > android:background="#B0B0B0" android:padding="3dip"
> > android:stretchColumns="0,1"
> android:layout_alignParentBottom="true"
> > android:layout_width="fill_parent"
> > android:layout_height="wrap_content">
> > 
> >  > android:text="Save" />
> >  android:id="@+id/removeOtherAdditionButton"
> > android:text="Delete" />
> > 
> > 
> >  > android:layout_marginBottom="55dip"
> > android:layout_width="fill_parent"
> > android:layout_height="wrap_content">
> >  > android:layout_height="wrap_content"
> android:padding="3dip"
> > android:stretchColumns="0,1">
> >  android:background="#382E17">
> >  android:textSize="16dip"
> > android:typeface="sans"
> android:layout_span="2"
> > android:textStyle="bold"
> > android:gravity="center"
> android:layout_width="fill_parent"
> >
> android:textColor="@color/text_color" />
> > 
> > 
> >  android:textSize="30dip"
> > android:typeface="sans"
> android:layout_span="2"
> >
> android:layout_width="fill_parent" android:textColor="@color/
> > text_color" />
> > 
> > 
> >  android:textColor="@color/
> > text_color"
> > android:textSize="16dip"
> android:textStyle="bold" />
> >  android:id="@+id/addOtherNameSpinner"
> > android:layout_width="200dip" />
> > 
> > 
> >  android:textColor="@color/
> > text_color"
> > android:textSize="16dip"
> android:textStyle="bold" />
> >  android:id="@+id/addOtherAmount" android:gravity="top"
> > android:inputType="numberDecimal"
> android:layout_width="200dip" /
> >
> > 
> > 
> >  android:textColor="@color/
> > text_color"
> > android:textSize="16dip"
> android:textStyle="bold" />
> >  android:id="@+id/addOtherNameSpinner"
> > android:layout_width="200dip" />
> > 
> > 
> > 
> > 
>
> --
> 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-de

[android-developers] Software keyboard effecting my layout View

2010-02-21 Thread sid
Hi folks,

How to design a layout when a soft keyboard is opened??
Am having a requirement that when a keyboard is opened my layout view
is to be automatically changed according to the screen size.

Currently in my application when soft keyboard is opened it is hiding
some buttons..
so how do i overcome that???

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] Re: Retrieving data from portrait to landscape

2010-02-19 Thread wakeup sid
Hi Ravi..

Thanks for the information..
I have already done in a different method anyway...

On Fri, Feb 19, 2010 at 1:03 PM, ivar  wrote:

> you have to save the necessary data as part of the bundle in the
> method, onSaveInstanceState and onCreate(bundle), you should if there
> is any data in the bundle. if there is get the data from the bundle
> and use that data.
>
> -Ravi
>
> On Feb 18, 1:29 pm, sid  wrote:
> > Hi All,
> >
> > For changing from portrait to landscape mode i have done some changes
> > in manifest.xml and included some code in test.java file
> >
> > In manifest.xml i have included  > android:configChanges="orientation"/>
> >
> > i entered some data in portrait mode.
> > but when i rotate my mobile from portrait to landscape the control
> > goes to onConfigurationChanged() method.
> >
> > public void onConfigurationChanged(Configuration newConfig)
> > {
> > super.onConfigurationChanged(newConfig);
> > setContentView(R.layout.screen1_landscape);
> >
> > }
> >
> > in the above method im displaying one more new screen..
> > here is the problem that the data entered in portrait mode is not
> > retrieving in landscape mode..
> >
> > Please let me know where am going 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
>

-- 
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] Retrieving data from portrait to landscape

2010-02-18 Thread sid
Hi All,

For changing from portrait to landscape mode i have done some changes
in manifest.xml and included some code in test.java file

In manifest.xml i have included 

i entered some data in portrait mode.
but when i rotate my mobile from portrait to landscape the control
goes to onConfigurationChanged() method.

public void onConfigurationChanged(Configuration newConfig)
{
super.onConfigurationChanged(newConfig);
setContentView(R.layout.screen1_landscape);
}

in the above method im displaying one more new screen..
here is the problem that the data entered in portrait mode is not
retrieving in landscape mode..

Please let me know where am going 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] Development on the MyTouch 3G

2009-09-12 Thread Sid

I just ordered a myTouch 3G from T-Mobile (it will come locked). My
main motivation is to do Android Development on this phone. I just
read on the Android Development Site 
http://developer.android.com/guide/developing/device.html
that one can develop Android apps on the "Developer Phone" or the
Classic "G1".

Can I develop apps using my myTouch 3G? I guess it boils down to 2
things:

- Can I use the myTouch 3G to test apps that I develop using Eclipse?

- Can I use the myTouch 3G device itself as an app development
platform?

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