commit | e93cedb4454a05a0ecba12ff1ba60965c5c9d8d0 | [log] [tgz] |
---|---|---|
author | Andrei Stingaceanu <stg@google.com> | Fri May 05 11:50:05 2017 +0100 |
committer | Andrei Stingaceanu <stg@google.com> | Tue May 09 13:02:22 2017 +0100 |
tree | afbf645d649c7bcda12478da8e33759292c37bae | |
parent | e8dd649c034eb9965caaec40a2de8e5f972ef4c1 [diff] |
AutoSize TextView - fallback to OS version for O and above Re-enable delegating to the framework version of the auto-size implementation for OS versions O and above. Although the clean preferred way of switching implementations is built into TextViewCompat (this is what's public) had to check and switch implementations in AppCompatTextView because internally we read the auto-size attrs @ AppCompatTextHelper#loadFromAttributes and after we need to make a call to the framework implementation to populate with data. This stackoverflowed without the OS check because TextViewCompat always saw the TextView as an instance of AutoSizeableTextView and thus was always calling the support implementation (which in turn called the helper). Also introduces a new test to verify that setTextSize is working when auto-size is disabled and make it clear in all support tests that we are testing AppCompatTextView. Bug: 37958118 Test: existing tests pass Test: ./gradlew support-appcompat-v7:connectedCheck --info --daemon -Pandroid.testInstrumentationRunnerArguments.class=android.support.v7.widget.AppCompatTextViewAutoSizeTest Change-Id: Ie00a0f69842ae291ea5cd721b506363457859289
We are not currently accepting new modules, features, or behavior changes.
NOTE: You will need to use Linux or Mac OS. Building under Windows is not currently supported.
Follow the “Downloading the Source” guide to install and set up repo
tool, but instead of running the listed repo
commands to initialize the repository, run the folowing:
repo init -u https://android.googlesource.com/platform/manifest -b ub-supportlib-master
Now your repository is set to pull only what you need for building and running support library. Download the code (and grab a coffee while we pull down 7GB):
repo sync -j8 -c
You will use this command to sync your checkout in the future - it’s similar to git fetch
Open path/to/checkout/frameworks/support/
in Android Studio. Now you're ready edit, run, and test!
If you get “Unregistered VCS root detected” click “Add root” to enable git integration for Android Studio.
If you see any warnings (red underlines) run Build > Clean Project
.
You can do most of your work from Android Studio, however you can also build the full support library from command line:
cd path/to/checkout/frameworks/support/ ./gradlew createArchive
Run FooBarTest
Run android.support.foobar
Support library has a set of Android applications that exercise support library code. These applications can be useful when you want to debug a real running application, or reproduce a problem interactively, before writing test code.
These applications are named support-*-demos (e.g. support-4v-demos or support-leanback-demos. You can run them by clicking Run > Run ...
and choosing the desired application.
cd path/to/checkout/frameworks/support/ repo start my_branch_name . (make needed modifications) git commit -a repo upload --current-branch .
If you see the following prompt, choose always
:
Run hook scripts from https://android.googlesource.com/platform/manifest (yes/always/NO)?