[android-developers] Patching the source to Support Older Devices (AOSP)

2016-08-20 Thread Dorian Diaconu
 

So I got an old (rather historic) Android device. It can't be build 
properly, neither AOSP or CM, because the device needs patching. So there's 
no way CM will roll official builds for it.

There were a bunch of developers that worked on it for a while, but they 
left (even the ones that worked on devices that had the same hardware).

Each time a new version of android arrives, the patches seem to change. So 
my question is: Can anyone help me understand the concept of patching the 
source now that Android N is so close to be released?

Thanks!

-- 
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/53985fd4-d3da-45ba-9413-98f04ceb9051%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Creating add text to pdf template

2016-08-20 Thread wildespiele via Android Developers
Dear all,

I have been writing a Cordova plugin and looking for quite a while to add 
some text on a specific position in a pdf template. Has someone a working 
example for me?

What I have done so far

1. Read the resource file from the raw folder R.raw.template - works

   File file = new 
File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS)
 + "/target.pdf");
   InputStream is = 
cordova.getActivity().getResources().openRawResource(R.raw.template);
   OutputStream os = new FileOutputStream(file);
   byte[] fileData = new byte[is.available()];
   is.read(fileData);
   os.write(fileData);
   is.close();
   os.close();


2. Use the PdfRenderer to get single pages from the file - works

   File templateFile = new 
File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS)
 + "/target.pdf")
   PdfRenderer renderer = new PdfRenderer(ParcelFileDescriptor.open(file, 
ParcelFileDescriptor.MODE_READ_WRITE));

   Page page = renderer.openPage(0);


3. Try to add information to the page - does not work


public Bitmap drawText(String text, int textWidth, int textSize) {
// Get text dimensions
TextPaint textPaint = new TextPaint(Paint.ANTI_ALIAS_FLAG
| Paint.LINEAR_TEXT_FLAG);
textPaint.setStyle(Paint.Style.FILL);
textPaint.setColor(Color.BLACK);
textPaint.setTextSize(textSize);
StaticLayout mTextLayout = new StaticLayout(text, textPaint,
textWidth, Alignment.ALIGN_NORMAL, 1.0f, 0.0f, false);

// Create bitmap and canvas to draw to
Bitmap b = Bitmap.createBitmap(textWidth, mTextLayout.getHeight(), 
Bitmap.Config.ARGB_);
Canvas c = new Canvas(b);

// Draw background
Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG
| Paint.LINEAR_TEXT_FLAG);
paint.setStyle(Paint.Style.FILL);
paint.setColor(Color.WHITE);
c.drawPaint(paint);

// Draw text
c.save();
c.translate(0, 0);
mTextLayout.draw(c);
c.restore();

return b;
}


Bitmap b = drawText("foobar", *100*, *10*);

page.render(b, new Rect(0, 0, b.getWidth(), b.getHeight()), new Matrix(), 
PdfRenderer.Page.RENDER_MODE_FOR_PRINT);

page.close();
renderer.close();


But I only see the original template file. Any hints or example on this. 
External libraries should not be a solution.


-- 
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/21692900-68a1-42d1-8b04-aae55aa4ccd6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: Windows 10 Android Studio 2.1.3 Error:Buildtools 24.0.1 requires Java 1.8 or above. Current JDK version is 1.7.

2016-08-20 Thread Brad Hill
Thanks, that worked!

On Aug 20, 2016 2:59 PM,  wrote:

> I was having the same issue.  Try going to File → Project Structure and
> make sure the *JDK Location* field is set to a JDK that is 1.8.  If not,
> click the … next to that field to select the proper JDK.
>
> - Johnson
>
> On Saturday, August 20, 2016 at 11:38:49 AM UTC-7, Brad Hill wrote:
>>
>> Hi all,
>> This is my first post.  I installed Android Studio 2.1.3.  I've also
>> install Java 1.8.  Studio however is still giving me this error:
>> Windows 10 Android Studio 2.1.3 Error:Buildtools 24.0.1 requires Java 1.8
>> or above.  Current JDK version is 1.7.
>>
>> It's probably a "rookie" mistake.  I appreciate any help!  Thanks!
>>
>> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Android Developers" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/android-developers/LulaMxrJOFM/unsubscribe.
> To unsubscribe from this group and all its topics, 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/0384b80b-5eec-4e39-b37c-
> 243eec5c22f7%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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/CABrFneur3Y-JknCwhKYKjJneAFmPub2nYa-zUyg0w_YzmyDnGg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Windows 10 Android Studio 2.1.3 Error:Buildtools 24.0.1 requires Java 1.8 or above. Current JDK version is 1.7.

2016-08-20 Thread johnson . earls
I was having the same issue.  Try going to File → Project Structure and 
make sure the *JDK Location* field is set to a JDK that is 1.8.  If not, 
click the … next to that field to select the proper JDK.

- Johnson

On Saturday, August 20, 2016 at 11:38:49 AM UTC-7, Brad Hill wrote:
>
> Hi all,
> This is my first post.  I installed Android Studio 2.1.3.  I've also 
> install Java 1.8.  Studio however is still giving me this error:
> Windows 10 Android Studio 2.1.3 Error:Buildtools 24.0.1 requires Java 1.8 
> or above.  Current JDK version is 1.7.
>
> It's probably a "rookie" mistake.  I appreciate any help!  Thanks!
>
>

-- 
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/0384b80b-5eec-4e39-b37c-243eec5c22f7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Windows 10 Android Studio 2.1.3 Error:Buildtools 24.0.1 requires Java 1.8 or above. Current JDK version is 1.7.

2016-08-20 Thread Brad Hill
Hi all,
This is my first post.  I installed Android Studio 2.1.3.  I've also 
install Java 1.8.  Studio however is still giving me this error:
Windows 10 Android Studio 2.1.3 Error:Buildtools 24.0.1 requires Java 1.8 
or above.  Current JDK version is 1.7.

It's probably a "rookie" mistake.  I appreciate any help!  Thanks!

-- 
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/284fe3a9-d7ed-49bc-8387-a79d7f3b76dd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Android Spinner in Toolbar Arrow

2016-08-20 Thread Amitai Rosenberg


I want to have a Spinner in my Toolbar. However, the Spinner doesn't have 
any dropdown arrow, as the default Android Spinner does.

How do I make it have an arrow?

This is my code:

 
  

Fragment where I show the spinner:

 var spinner = Activity.FindViewById(Resource.Id.Location_Spinner);
 var adapter = ArrayAdapter.CreateFromResource(Activity, 
Resource.Array.locations_array, Android.Resource.Layout.SimpleSpinnerItem);
 
adapter.SetDropDownViewResource(Android.Resource.Layout.SimpleSpinnerDropDownItem);
 spinner.Adapter = adapter;

Any ideas why there isn't an arrow?

Thanks.

-- 
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/c39f7378-b30e-41db-8b18-30018594f224%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Working with Sync Adapters and Contacts Content Provider

2016-08-20 Thread Sarthak Mittal
Hello,

I am trying to build a 1-way contact sync adapter i.e sync contacts from 
mobile to server(hosted by me).
I just want to synchronize my contact data with my server and send only 
updated rows to the server.
I went through all the articles i could find on the internet, i have 
successfully set up my sync adapter as well.

But i am unable to understand this:

Suppose, I update/delete a contact from the native app and the relevant 
flag(Delete or Dirty) gets set, now how can i be sure that whenever my sync 
adapter runs, the flags were not reset by the google sync adapter(or any 
other adapter)?

I am currently using a stub authenticator and a stub provider.
I have been banging my head since a few days now, but still cannot figure 
it out.

It would be great to get any kind of help.

Regards,
Sarthak Mittal

-- 
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/023c8a1e-62a6-4d5d-af0a-fa4332dd653e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: AsyncTask - wait until the task has finished

2016-08-20 Thread Carl Hopkinson
Always demanding no waiting for async io to finish is not realistic since 
many applications cannot do useful work until the results are in over the 
wire. Results of network calls are often used as inputs to computations and 
not simply as populating views.  Until the computations are done, the app 
can really do no useful work.  In these cases, requiring no waiting on 
AsyncIO (.get() call) only vastly over-complicates the app for no 
beneficial purpose.

On Monday, August 17, 2009 at 10:49:29 AM UTC-4, Tom wrote:
>
> Hi, 
>
> I use a subclass of AsyncTask in the main Thread. 
> I would like the main Thread wait for the end of the AsyncTask. 
>
> How can I do that? 
>
> I saw methods "get()" in AsyncTask but I don't understand them. 
>
> Best Regards 
> Tom

-- 
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/c81c9884-80c0-4289-95e2-5f01f474e38c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Two way contact sync

2016-08-20 Thread Sarthak Mittal
Hello Dmitri,

I am learning about sync adapters and contact syncing. 

But i am unable to understand this scenario:
Suppose, I update/delete a contact from the native app and the relevant 
flag(Delete or Dirty) gets set, now how can i be sure that whenever my sync 
adapter runs, the flags were not reset by the google sync adapter(or any 
other adapter)?

I have been banging my head since a few days now, but still cannot figure 
it out.
I would be extremely grateful for your help.

Regards,
Sarthak Mittal

On Thursday, 17 June 2010 23:17:03 UTC+5:30, Dmitri Plotnikov wrote:
>
> There is no conceptual difference between a one-way and a two-way sync. 
>  My understanding is that most people start the sync by sending local 
> changes to the server and then get incoming changes.  
>
> The DIRTY column on RawContact will tell you what changed locally.  Make 
> sure you reset the flag after the changes have been successfully sent to 
> the server.
>
> You can use the Exchange sync as a source of inspiration.  Unfortunately, 
> it's crazy complex (out of necessity). Still you may dig up some copy/paste 
> opportunities there, e.g. the "commit" method:
>
>
> http://android.git.kernel.org/?p=platform/packages/apps/Email.git;a=blob;f=src/com/android/exchange/adapter/ContactsSyncAdapter.java
>
>
> 
> Cheers,
> Dmitri
>
> On Thu, Jun 17, 2010 at 10:06 AM, BeerBelly  > wrote:
>
>> Hey,
>>
>> I'm developing an application that needs a two way sync of its own
>> custom contacts. I saw the sample code on Android developer website
>> (talking about AccountManager here and the sample sync adapter code),
>> but that only syncs from the cloud to the device. Is there a way to do
>> the two way sync? Can someone point me in the right direction with
>> this?
>>
>> Could really use the help here.
>>
>> 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-d...@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 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/def582ce-70e2-4ad3-aa21-050f4040552a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: "Unable to obtain result of 'adb version'"

2016-08-20 Thread Sharon Gilmore
Update: I can obtain the adb version via the command line. But apparently 
screaming "it's version 1.0.36!" at the computer doesn't help :)

-- 
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/3689eb45-8c84-4b1b-b42b-7d9c50b89e2d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: "Unable to obtain result of 'adb version'"

2016-08-20 Thread Sharon Gilmore


On Saturday, 20 August 2016 15:35:12 UTC+1, Sharon Gilmore wrote:
>
> For 3 days now I've been getting the error "Unable to obtain result of 
> 'adb version'" when I try to run an emulator in Android Studio. I don't 
> think I changed anything on my system to make it happen, though I usually 
> update any packages Android Studio recommends. I've Googled and that has 
> given me a number of things to try, but I'm no further on.  I've tried the 
> following:
>
> > Uninstalling and reinstalling platform-tools - I even downloaded version 
> 23 (I'm currently on 24) and replaced 24 with that, but that didn't work.
> > Uninstalling and reinstalling Android Studio - this worked for a day, 
> but took hours, so I can't just do it every time.
> > Checking adb.exe exists and the path is correct etc. - adb.exe exists in 
> C:\Users\My Name\AppData\Local\Android\sdk\platform-tools and it seems ok.
> > Anti-virus software blocking adb.exe - not sure how to check this, but 
> it doesn't say that it's blocking anything.
>
> I'm stuck now.  Can't do any development, and it's been like this for 3 
> days.  I don't know what else to try. I literally can't proceed with any 
> development until I resolve this (and I rely on this for income)!  Can 
> anyone suggest anything else I could try?
>
> Am on Windows 10, and have upgraded to the latest Android Studio (2.1.3).
>
> Thanks!
>


Update: I tried some more things:

> Turned anti-virus firewall off - didn't change anything

> Ran adb from the command line - runs ok, but when I type "adb devices", I 
get an empty list. If I go into Android Studio and start a device manually 
from the AVD Manager, and then do "adb devices" again, this time the 
running device shows up

> The location of "where adb" seems to be correct, though - I'm wondering 
whether Android Studio is looking in the wrong place for it... is there a 
way to check the path?

I reckon I could temporarily push the app to the device using the command 
line, but I'm not sure what to push if I'm only testing, as I don't have an 
apk file (I think).  Which file would I push over to the emulator? And how 
do I do that? The emulator appears to be called emulator-5554.

-- 
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/6a3028f3-1be5-411e-97d3-a9fce8396872%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] "Unable to obtain result of 'adb version'"

2016-08-20 Thread Sharon Gilmore
For 3 days now I've been getting the error "Unable to obtain result of 'adb 
version'" when I try to run an emulator in Android Studio. I don't think I 
changed anything on my system to make it happen, though I usually update 
any packages Android Studio recommends. I've Googled and that has given me 
a number of things to try, but I'm no further on.  I've tried the following:

> Uninstalling and reinstalling platform-tools - I even downloaded version 
23 (I'm currently on 24) and replaced 24 with that, but that didn't work.
> Uninstalling and reinstalling Android Studio - this worked for a day, but 
took hours, so I can't just do it every time.
> Checking adb.exe exists and the path is correct etc. - adb.exe exists in 
C:\Users\My Name\AppData\Local\Android\sdk\platform-tools and it seems ok.
> Anti-virus software blocking adb.exe - not sure how to check this, but it 
doesn't say that it's blocking anything.

I'm stuck now.  Can't do any development, and it's been like this for 3 
days.  I don't know what else to try. I literally can't proceed with any 
development until I resolve this (and I rely on this for income)!  Can 
anyone suggest anything else I could try?

Am on Windows 10, and have upgraded to the latest Android Studio (2.1.3).

Thanks!

-- 
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/4633fe6f-3870-46a7-9b22-cc425406115b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] How I can get contentview of a app using a internt

2016-08-20 Thread Steve Gabrilowitz
Send the content to display along with the intent using addExtra();

On Aug 20, 2016 3:22 AM, "Indika Ruwan Senavirathne" <
indika.senavirat...@gmail.com> wrote:

>
> Hi All,
>
> Im getting package name from PackageManager and Starting activity. But
> after I want to get display content from that.
> Intent i = manager.getLaunchIntentForPackage(appName);
> startActivity(i);
>
>
> Mean I want to get app contectview and display it on the another frame.
>
>
>
> Any help please ?
>
> --
> 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/8b0d69e6-1e4a-44fd-997b-
> e6449fe3f922%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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/CABfabRjHVy6Ly%2BdfNqCF1ghBMs3v%2BXxgMyKdZK3tzfZVvYzYzA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] [PreferenceFragmentCompat] How to use activatedBackgroundIndicator for selecting items?

2016-08-20 Thread Yaroslav Pronin
Hello. Since the Support Library doesn't support two-pane interface, I 
write your implementation for application. The only difficulty I 
encountered - highlighting the selected preference item (aka header in 
PreferenceActivity).
For example (Email app):



Is it possible to provide this opportunity in PreferenceFragmentCompat?

-- 
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/37f27351-f033-489b-a83e-601fdc794db5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate Need - Android Developer

2016-08-20 Thread Marty Ballard
What is the pay for this role?

-- 
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/155ccac5-6147-4928-b5d2-c9ed2b91197b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] android wear versus android 5.1 on smartwatch

2016-08-20 Thread Ludo Kustermans
Hi,
I am puzzled, and hope someone can help.
Some new smartwatches are coming out with Android 5.1 instead of Android 
Wear.
Is Android Wear a limited version of 5.1 with focus on power consumption 
for example ?
If you write SW with Android Studio, and you select also " wear", will this 
also work with a 
smartwatch with Android 5.1 , or what do you need to do to program the 
android 5.1 watch ?
Thanks in advance
best regards
Ludo Kustermans 

-- 
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/e835b54c-8dda-4df2-98d6-319531b1b6b1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] RTL Design Engineer (Modem design)

2016-08-20 Thread up2datecorp


*RTL Design Engineer*  (Modem design)

Location : Santa Clara

Joining time : immediate

Rate : Open for Full time or contract

 

The Broad JD for the requirements is,

 

· Verilog/VHDL RTL/Conformal Verification( LEC)

· Working knowledge of Integrating multiple IPs and associated glue 
logic

· Understanding of Power Management ( voltage domain, power 
domains, clock domains )

-- 
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/8c60c5b7-1d63-45fc-9f6a-8bb9ba15e274%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] How I can get contentview of a app using a internt

2016-08-20 Thread Indika Ruwan Senavirathne

Hi All,

Im getting package name from PackageManager and Starting activity. But 
after I want to get display content from that. 
Intent i = manager.getLaunchIntentForPackage(appName);
startActivity(i);


Mean I want to get app contectview and display it on the another frame.

 

Any help please ?

-- 
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/8b0d69e6-1e4a-44fd-997b-e6449fe3f922%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Validation Engineer

2016-08-20 Thread up2datecorp


*Validation Engineer*

Location : Austin,

Joining time : immediate

Rate : Open for Full time or contract

 

Post silicon validation of Android based wearable devices which involves

· Creation of Test-plan & Writing validation code for verifying 
various interfaces like Display controllers, Memory controllers, USB etc.

· Power management testing (power sequencing, reset sequencing 
etc.),

· Validation of MIPI MPHY and DPHY.

· Power Characterization activities

· Performing USB electrical validation and compliance tests

· Documentation updates[release Notes, Technical  documents as 
applicable]

*Desired Profile:*

· Minimum BE/BTECH or MS/MTech with 4 years of experience.

· Experience with Post Silicon Validation of various IP Blocks at 
SoC level (like Display controllers, Communication Peripherals, Power 
Sequence, Power Measurements etc). Must have good hands on experience using 
IDE and debuggers.

· Excellent knowledge of Silicon characteristics and high speed 
interface electrical characterization.

· Post silicon validation and debug experience on high speed 
interfaces (any of PCIe-gen3, USB, DDRx or similar protocols) is required.

· Thorough knowledge of lab/measurement equipment (Digital 
Oscilloscopes, Protocol analyzers) is a must.

· Experience in High speed serial data links (multi Gb/s), PHY 
circuits, transceivers, Serializer, De-serializer, PLLs, clocks and Post 
Silicon Validation

· Hands on C and C++ experience and must have good scripting 
knowledge.

· Preferably handled RTL Debug, FPGA debug, HW debug. 

 

-- 
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/2b8c1c73-204f-4606-b4cb-4f0e49223a29%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.