OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:fixedgridlayout
(Results
1 - 8
of
8
) sorted by null
/development/samples/FixedGridLayout/src/com/example/android/fixedgridlayout/
FixedGridLayoutTest.java
1
package com.example.android.
fixedgridlayout
;
15
FixedGridLayout
grid = (
FixedGridLayout
)findViewById(R.id.grid);
FixedGridLayout.java
17
package com.example.android.
fixedgridlayout
;
37
public class
FixedGridLayout
extends ViewGroup {
41
public
FixedGridLayout
(Context context) {
45
public
FixedGridLayout
(Context context, AttributeSet attrs) {
50
attrs, R.styleable.
FixedGridLayout
);
/development/samples/FixedGridLayout/res/values/
attrs.xml
2
<declare-styleable name="
FixedGridLayout
">
/development/samples/FixedGridLayout/
Android.mk
8
LOCAL_PACKAGE_NAME :=
FixedGridLayout
AndroidManifest.xml
3
package="com.example.android.
fixedgridlayout
"
/development/samples/FixedGridLayout/res/layout/
main.xml
2
<com.example.android.
fixedgridlayout
.
FixedGridLayout
4
xmlns:app="http://schemas.android.com/apk/res/com.example.android.
fixedgridlayout
"
41
</com.example.android.
fixedgridlayout
.
FixedGridLayout
>
/development/samples/ApiDemos/src/com/example/android/apis/animation/
FixedGridLayout.java
34
* <p>This class was copied from the
FixedGridLayout
Api demo; see that demo for
37
public class
FixedGridLayout
extends ViewGroup {
41
public
FixedGridLayout
(Context context) {
LayoutAnimations.java
59
container = new
FixedGridLayout
(this);
61
((
FixedGridLayout
)container).setCellHeight(90);
62
((
FixedGridLayout
)container).setCellWidth(100);
Completed in 182 milliseconds