Add a prebuilt of the gridlayout support library. do not merge
Change-Id: Icd43238672a02f84e37d4301bec34dbe48375200
This commit is contained in:
@@ -230,6 +230,8 @@ ${OUT_DIR}/target/common/obj/PACKAGING/android-support-v13_intermediates/android
|
|||||||
frameworks/support/v13 extras/android/support/v13/src
|
frameworks/support/v13 extras/android/support/v13/src
|
||||||
development/samples/Support13Demos extras/android/support/v13/samples/Support13Demos
|
development/samples/Support13Demos extras/android/support/v13/samples/Support13Demos
|
||||||
|
|
||||||
|
development/sdk/prebuilt/v7 extras/android/support/v7
|
||||||
|
|
||||||
##############################################################################
|
##############################################################################
|
||||||
# Tests Component
|
# Tests Component
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
|||||||
9
sdk/prebuilt/v7/gridlayout/AndroidManifest.xml
Normal file
9
sdk/prebuilt/v7/gridlayout/AndroidManifest.xml
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="android.support.v7.gridlayout"
|
||||||
|
android:versionCode="1"
|
||||||
|
android:versionName="1.0" >
|
||||||
|
|
||||||
|
<uses-sdk android:minSdkVersion="7" />
|
||||||
|
|
||||||
|
</manifest>
|
||||||
Binary file not shown.
15
sdk/prebuilt/v7/gridlayout/project.properties
Normal file
15
sdk/prebuilt/v7/gridlayout/project.properties
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
# This file is automatically generated by Android Tools.
|
||||||
|
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
|
||||||
|
#
|
||||||
|
# This file must be checked in Version Control Systems.
|
||||||
|
#
|
||||||
|
# To customize properties used by the Ant build system edit
|
||||||
|
# "ant.properties", and override values to adapt the script to your
|
||||||
|
# project structure.
|
||||||
|
#
|
||||||
|
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
|
||||||
|
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
|
||||||
|
|
||||||
|
# Project target.
|
||||||
|
target=android-7
|
||||||
|
android.library=true
|
||||||
198
sdk/prebuilt/v7/gridlayout/res/values/attrs.xml
Normal file
198
sdk/prebuilt/v7/gridlayout/res/values/attrs.xml
Normal file
@@ -0,0 +1,198 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
|
||||||
|
<declare-styleable name="GridLayout">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
support versions. All attributes not present in ViewGroup/View are
|
||||||
|
redefined in the support library namespace.
|
||||||
|
-->
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
The orientation property is not used during layout. It is only used to
|
||||||
|
allocate row and column parameters when they are not specified by its children's
|
||||||
|
layout parameters. GridLayout works like LinearLayout in this case;
|
||||||
|
putting all the components either in a single row or in a single column -
|
||||||
|
depending on the value of this flag. In the horizontal case, a columnCount
|
||||||
|
property may be additionally supplied to force new rows to be created when a
|
||||||
|
row is full. The rowCount attribute may be used similarly in the vertical case.
|
||||||
|
The default is horizontal.
|
||||||
|
-->
|
||||||
|
<attr name="orientation">
|
||||||
|
|
||||||
|
<!-- Defines an horizontal widget. -->
|
||||||
|
<enum name="horizontal" value="0" />
|
||||||
|
<!-- Defines a vertical widget. -->
|
||||||
|
<enum name="vertical" value="1" />
|
||||||
|
</attr>
|
||||||
|
<!-- The maximum number of rows to create when automatically positioning children. -->
|
||||||
|
<attr name="rowCount" format="integer" />
|
||||||
|
<!-- The maximum number of columns to create when automatically positioning children. -->
|
||||||
|
<attr name="columnCount" format="integer" />
|
||||||
|
<!--
|
||||||
|
When set to true, tells GridLayout to use default margins when none are specified
|
||||||
|
in a view's layout parameters.
|
||||||
|
The default value is false.
|
||||||
|
See {@link android.widget.GridLayout#setUseDefaultMargins(boolean)}.
|
||||||
|
-->
|
||||||
|
<attr name="useDefaultMargins" format="boolean" />
|
||||||
|
<!--
|
||||||
|
When set to alignMargins, causes alignment to take place between the outer
|
||||||
|
boundary of a view, as defined by its margins. When set to alignBounds,
|
||||||
|
causes alignment to take place between the edges of the view.
|
||||||
|
The default is alignMargins.
|
||||||
|
See {@link android.widget.GridLayout#setAlignmentMode(int)}.
|
||||||
|
-->
|
||||||
|
<attr name="alignmentMode">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Align the bounds of the children.
|
||||||
|
See {@link android.widget.GridLayout#ALIGN_BOUNDS}.
|
||||||
|
-->
|
||||||
|
<enum name="alignBounds" value="0" />
|
||||||
|
<!--
|
||||||
|
Align the margins of the children.
|
||||||
|
See {@link android.widget.GridLayout#ALIGN_MARGINS}.
|
||||||
|
-->
|
||||||
|
<enum name="alignMargins" value="1" />
|
||||||
|
</attr>
|
||||||
|
<!--
|
||||||
|
When set to true, forces row boundaries to appear in the same order
|
||||||
|
as row indices.
|
||||||
|
The default is true.
|
||||||
|
See {@link android.widget.GridLayout#setRowOrderPreserved(boolean)}.
|
||||||
|
-->
|
||||||
|
<attr name="rowOrderPreserved" format="boolean" />
|
||||||
|
<!--
|
||||||
|
When set to true, forces column boundaries to appear in the same order
|
||||||
|
as column indices.
|
||||||
|
The default is true.
|
||||||
|
See {@link android.widget.GridLayout#setColumnOrderPreserved(boolean)}.
|
||||||
|
-->
|
||||||
|
<attr name="columnOrderPreserved" format="boolean" />
|
||||||
|
</declare-styleable>
|
||||||
|
<declare-styleable name="GridLayout_Layout">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
support versions. All attributes not present in MarginLayout are
|
||||||
|
redefined in the support library name space.
|
||||||
|
-->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- START MarginLayout layoutparams -->
|
||||||
|
|
||||||
|
<attr name="android:layout_width" />
|
||||||
|
<attr name="android:layout_height" />
|
||||||
|
<!--
|
||||||
|
Specifies extra space on the left, top, right and bottom
|
||||||
|
sides of this view. This space is outside this view's bounds.
|
||||||
|
-->
|
||||||
|
<attr name="android:layout_margin" />
|
||||||
|
<!--
|
||||||
|
Specifies extra space on the left side of this view.
|
||||||
|
This space is outside this view's bounds.
|
||||||
|
-->
|
||||||
|
<attr name="android:layout_marginLeft" />
|
||||||
|
<!--
|
||||||
|
Specifies extra space on the top side of this view.
|
||||||
|
This space is outside this view's bounds.
|
||||||
|
-->
|
||||||
|
<attr name="android:layout_marginTop" />
|
||||||
|
<!--
|
||||||
|
Specifies extra space on the right side of this view.
|
||||||
|
This space is outside this view's bounds.
|
||||||
|
-->
|
||||||
|
<attr name="android:layout_marginRight" />
|
||||||
|
<!--
|
||||||
|
Specifies extra space on the bottom side of this view.
|
||||||
|
This space is outside this view's bounds.
|
||||||
|
-->
|
||||||
|
<attr name="android:layout_marginBottom" />
|
||||||
|
<!--
|
||||||
|
Specifies extra space on the start side of this view.
|
||||||
|
This space is outside this view's bounds.
|
||||||
|
-->
|
||||||
|
<attr name="android:layout_marginStart" />
|
||||||
|
<!--
|
||||||
|
Specifies extra space on the end side of this view.
|
||||||
|
This space is outside this view's bounds.
|
||||||
|
-->
|
||||||
|
<attr name="android:layout_marginEnd" />
|
||||||
|
|
||||||
|
<!-- END MarginLayout layoutparams -->
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
The row boundary delimiting the top of the group of cells
|
||||||
|
occupied by this view.
|
||||||
|
-->
|
||||||
|
<attr name="layout_row" format="integer" />
|
||||||
|
<!--
|
||||||
|
The row span: the difference between the bottom and top
|
||||||
|
boundaries delimiting the group of cells occupied by this view.
|
||||||
|
The default is one.
|
||||||
|
See {@link android.widget.GridLayout.Spec}.
|
||||||
|
-->
|
||||||
|
<attr name="layout_rowSpan" format="integer" min="1" />
|
||||||
|
<!--
|
||||||
|
The column boundary delimiting the left of the group of cells
|
||||||
|
occupied by this view.
|
||||||
|
-->
|
||||||
|
<attr name="layout_column" format="integer" />
|
||||||
|
<!--
|
||||||
|
The column span: the difference between the right and left
|
||||||
|
boundaries delimiting the group of cells occupied by this view.
|
||||||
|
The default is one.
|
||||||
|
See {@link android.widget.GridLayout.Spec}.
|
||||||
|
-->
|
||||||
|
<attr name="layout_columnSpan" format="integer" min="1" />
|
||||||
|
<!--
|
||||||
|
Gravity specifies how a component should be placed in its group of cells.
|
||||||
|
The default is LEFT | BASELINE.
|
||||||
|
See {@link android.widget.GridLayout.LayoutParams#setGravity(int)}.
|
||||||
|
-->
|
||||||
|
<attr name="layout_gravity">
|
||||||
|
|
||||||
|
<!-- Push object to the top of its container, not changing its size. -->
|
||||||
|
<flag name="top" value="0x30" />
|
||||||
|
<!-- Push object to the bottom of its container, not changing its size. -->
|
||||||
|
<flag name="bottom" value="0x50" />
|
||||||
|
<!-- Push object to the left of its container, not changing its size. -->
|
||||||
|
<flag name="left" value="0x03" />
|
||||||
|
<!-- Push object to the right of its container, not changing its size. -->
|
||||||
|
<flag name="right" value="0x05" />
|
||||||
|
<!-- Place object in the vertical center of its container, not changing its size. -->
|
||||||
|
<flag name="center_vertical" value="0x10" />
|
||||||
|
<!-- Grow the vertical size of the object if needed so it completely fills its container. -->
|
||||||
|
<flag name="fill_vertical" value="0x70" />
|
||||||
|
<!-- Place object in the horizontal center of its container, not changing its size. -->
|
||||||
|
<flag name="center_horizontal" value="0x01" />
|
||||||
|
<!-- Grow the horizontal size of the object if needed so it completely fills its container. -->
|
||||||
|
<flag name="fill_horizontal" value="0x07" />
|
||||||
|
<!-- Place the object in the center of its container in both the vertical and horizontal axis, not changing its size. -->
|
||||||
|
<flag name="center" value="0x11" />
|
||||||
|
<!-- Grow the horizontal and vertical size of the object if needed so it completely fills its container. -->
|
||||||
|
<flag name="fill" value="0x77" />
|
||||||
|
<!--
|
||||||
|
Additional option that can be set to have the top and/or bottom edges of
|
||||||
|
the child clipped to its container's bounds.
|
||||||
|
The clip will be based on the vertical gravity: a top gravity will clip the bottom
|
||||||
|
edge, a bottom gravity will clip the top edge, and neither will clip both edges.
|
||||||
|
-->
|
||||||
|
<flag name="clip_vertical" value="0x80" />
|
||||||
|
<!--
|
||||||
|
Additional option that can be set to have the left and/or right edges of
|
||||||
|
the child clipped to its container's bounds.
|
||||||
|
The clip will be based on the horizontal gravity: a left gravity will clip the right
|
||||||
|
edge, a right gravity will clip the left edge, and neither will clip both edges.
|
||||||
|
-->
|
||||||
|
<flag name="clip_horizontal" value="0x08" />
|
||||||
|
<!-- Push object to the beginning of its container, not changing its size. -->
|
||||||
|
<flag name="start" value="0x00800003" />
|
||||||
|
<!-- Push object to the end of its container, not changing its size. -->
|
||||||
|
<flag name="end" value="0x00800005" />
|
||||||
|
</attr>
|
||||||
|
</declare-styleable>
|
||||||
|
|
||||||
|
</resources>
|
||||||
7
sdk/prebuilt/v7/gridlayout/res/values/dimens.xml
Normal file
7
sdk/prebuilt/v7/gridlayout/res/values/dimens.xml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
|
||||||
|
<!-- The default gap between components in a layout. -->
|
||||||
|
<dimen name="default_gap">16dip</dimen>
|
||||||
|
|
||||||
|
</resources>
|
||||||
2
sdk/prebuilt/v7/gridlayout/src/.readme
Normal file
2
sdk/prebuilt/v7/gridlayout/src/.readme
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
This hidden file is there to ensure there is an src folder.
|
||||||
|
Once we support binary library this will go away.
|
||||||
Reference in New Issue
Block a user