I copied the Launcher source code from the master (Git) Android source
and created an Eclipse Android 1.6 project using existing code.
Several Java problems exist relating to fields that can not be
resolved. For example: Workspace.java and several other classes have
"mScrollX cannot be resolved" problems. mScrollX is a field in the
View class and Workspace extends ViewGroup, which extends View. Also,
the View class is imported.

Question 1: Why is this not resolved?

Upon examining the contents of the SDK 1.6 android.jar, I see the
implementation of View in the android.jar is nothing like the master
Git Android source code for View. All of the View methods in the SDK
1.6 version of View only contain a "throw new RuntimeException
( "Stub!" )" statement.

Question 2: What's happening here?

Question 3: How do I pull app source code from the master Git and pull
it into Eclipse to either extend it, refactor it, of derive a new app
from it?

Thanks.

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

Reply via email to