OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:expandinglayout
(Results
1 - 4
of
4
) sorted by null
/development/samples/devbytes/animation/ListViewExpandingCells/src/com/example/android/expandingcells/
CustomArrayAdapter.java
92
ExpandingLayout
expandingLayout
= (
ExpandingLayout
)convertView.findViewById(R.id
94
expandingLayout
.setExpandedHeight(object.getExpandedHeight());
95
expandingLayout
.setSizeChangedListener(object);
98
expandingLayout
.setVisibility(View.GONE);
100
expandingLayout
.setVisibility(View.VISIBLE);
ExpandingLayout.java
37
public class
ExpandingLayout
extends RelativeLayout {
43
public
ExpandingLayout
(Context context) {
47
public
ExpandingLayout
(Context context, AttributeSet attrs) {
51
public
ExpandingLayout
(Context context, AttributeSet attrs, int defStyle) {
ExpandingListView.java
194
final View
expandingLayout
= view.findViewById(R.id.expanding_layout);
195
expandingLayout
.setVisibility(View.VISIBLE);
473
final View
expandingLayout
= view.findViewById (R.id.expanding_layout);
490
animations.add(ObjectAnimator.ofFloat(
expandingLayout
, View.ALPHA, 1, 0));
502
expandingLayout
.setVisibility(View.GONE);
511
expandingLayout
.setAlpha(1);
/development/samples/devbytes/animation/ListViewExpandingCells/res/layout/
list_view_item.xml
48
<com.example.android.expandingcells.
ExpandingLayout
66
</com.example.android.expandingcells.
ExpandingLayout
>
Completed in 71 milliseconds