History log of /external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ViewLoaderTest.java
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
665c73f08d5681d345c0c559f1b1008740371bd8 14-Jan-2013 John Stuppy <jstuppy@google.com> Adds support for versioning layouts

This change allows for proper testing of versioned layouts (default vs.
v11). Previously, only the default layout was loaded, regardless of SDK
version.

Change-Id: Ie3be691877a85f511f51067c5e76fc3efbaaa982
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ViewLoaderTest.java
cd6a55965421b7a1bcea900058a98c464c157319 20-Apr-2012 Matteo Panella <morpheus@level28.org> Add support for android:contentDescription in ShadowView
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ViewLoaderTest.java
e429b89e0edf6b77099f40e7e3af40b0cc1e7fc4 09-Mar-2012 Amrit Thakur & Ryan Richard <pair+amrit+rrichard@pivotallabs.com> ShadowDrawable can create new drawables from resource ids
Got rid of int fields in CompoundDrawable in favor of the existing Drawables (which can now store their own resource ids)
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ViewLoaderTest.java
8900025d7fa03579c0ae4d19255d3a8650cbf12a 14-Feb-2012 Phil Goodwin & Ryan Richard <pair+phil+rrichard@pivotallabs.com> Support same layout file in different res directories for testing. For example, you can use Robolectric.getShadowApplication().getResourceLoader().setLayoutQualifierSearchPath("land", "port") to set the res directory search order for layout files to "layout-land" followed by "layout-port" followed by "layout".
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ViewLoaderTest.java
ca30e7b4a41666b715bfe20e3ebae5c28eae3e79 01-Sep-2011 Michael Portuesi <mikep@zoodles.com> Streamline tests
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ViewLoaderTest.java
bb2f85d397fa65f20c6932186d9156ced9beb184 01-Sep-2011 Michael Portuesi <mikep@zoodles.com> Test cases for i18n-strict, plus bugfixes
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ViewLoaderTest.java
49b51ef87a395b9fa7ab6167df0969425cea014d 12-Aug-2011 Jesse Toth & Tim Labeeuw <pair+jesse+tim@pivotallabs.com> Views properly namespaced with android:X/Y
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ViewLoaderTest.java
6c887826366610c9e44c21a9fec6020219226283 06-Mar-2011 Gautier Hayoun <ghayoun@gmail.com> Added onClick attribute support on View
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ViewLoaderTest.java
9c6b69ba5b9aba6559ceeb652fa91902cf63fcda 29-Jan-2011 Phil Goodwin <pair+phil@pivotallabs.com> Fixed bug where layouts were getting <include>ed twice.
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ViewLoaderTest.java
0215e108c235758faaad66115a52383b6e3b6e64 29-Jan-2011 Phil Goodwin <pair+phil@pivotallabs.com> Added a test to confirm that <include>s are not included twice by checking getChildCount()
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ViewLoaderTest.java
4408dfe8bef9e3a782312cb2b9294427807850f1 22-Jan-2011 Phil Goodwin <pair+phil@pivotallabs.com> Merge branch 'master' of github.com:pivotal/robolectric
e759ba9296f7cf3063cdcab5f288ab6604d80ddb 22-Jan-2011 Phil Goodwin <pair+phil@pivotallabs.com> Refactored the initialization of ResourceLoader and made it fail gracefully when system resources cannot be found instead of blowing up.
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ViewLoaderTest.java
3e9e8188bfed404ce1f2ce930b1cbb66d05c162d 22-Jan-2011 Christian Williams <xian@squareup.com> Call View#onFinishInflate() after a view has been inflated.
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ViewLoaderTest.java
29610b43047065c5dc66452d33f0113ac7e65fe8 21-Jan-2011 Phil Goodwin <pair+phil@pivotallabs.com> Trying palfrey's changes again

Revert "Revert "Making a distinction between system resources, loaded from the Android SDK, and local resources. Code that accesses resources now explicitly accesses local resources except in the specific new cases where system resources need to be accessed.""

This reverts commit d86e484c4a8692c1a726cc05f0da1b310ab3a940.
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ViewLoaderTest.java
d86e484c4a8692c1a726cc05f0da1b310ab3a940 21-Jan-2011 Phil Goodwin <pair+phil@pivotallabs.com> Revert "Making a distinction between system resources, loaded from the Android SDK, and local resources. Code that accesses resources now explicitly accesses local resources except in the specific new cases where system resources need to be accessed."

This reverts commit f540e3687a4ca75ea6b40f577b7807cca30119be, reversing
changes made to 6a85565da2f3ce4187865d9cee2da58e992a4650.
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ViewLoaderTest.java
f540e3687a4ca75ea6b40f577b7807cca30119be 19-Jan-2011 Phil Goodwin <pair+phil@pivotallabs.com> Making a distinction between system resources, loaded from the Android SDK, and local resources. Code that accesses resources now explicitly accesses local resources except in the specific new cases where system resources need to be accessed.
String resources are stored in separate locations so that name collisions can be tolerated. Value collisions, however, are not tolerated: two different strings can have the same name (and so must be explicitly resolved as either local or system resources) but they may never have the same id.

Merge branch 'palfrey-SpinnerTest'

Conflicts:
src/main/java/com/xtremelabs/robolectric/res/ResourceLoader.java
src/main/java/com/xtremelabs/robolectric/shadows/ShadowArrayAdapter.java
src/test/java/com/xtremelabs/robolectric/shadows/AbsSpinnerTest.java
40c6251719cccc0a84ae99c976d2836b14374ce6 14-Jan-2011 Christian Williams <antixian666@gmail.com> Auto reformat; optimize imports; minor JavaDoc fixes.
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ViewLoaderTest.java
f58c6545761402d3ad215566a49b0add7f6192d3 11-Jan-2011 Christian Williams & Phil Goodwin <pair+xian+phil@pivotallabs.com> Removed dependencies on android.test
Fixed falsely passing BitmapDrawable.equals_shouldTestBounds() test -- assertNotEqual() (and all assertions in android-test's JUnit) was always passing.
Fixed ShadowDrawable.equals()
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ViewLoaderTest.java
4ac725f9b4cebbf46805fc5e9b2f0eaf3fdd9b29 22-Dec-2010 Christian Williams <pair+xian@pivotallabs.com> Rearrange source tree to follow maven conventions.
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ViewLoaderTest.java