Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8a06cf70 authored by Adam Cohen's avatar Adam Cohen Committed by Android (Google) Code Review
Browse files

Merge "Preliminary implementation of StackView, which extends AdapterViewAnimator."

parents 7a703746 44729e3d
Loading
Loading
Loading
Loading
+32 −51
Original line number Diff line number Diff line
@@ -213325,17 +213325,6 @@
 visibility="public"
>
</method>
<method name="getVisibleTitleHeight"
 return="int"
 abstract="false"
 native="false"
 synchronized="false"
 static="false"
 final="false"
 deprecated="not deprecated"
 visibility="public"
>
</method>
<method name="getZoomControls"
 return="android.view.View"
 abstract="false"
@@ -216659,7 +216648,7 @@
</interface>
<class name="AdapterViewAnimator"
 extends="android.widget.AdapterView"
 abstract="false"
 abstract="true"
 static="false"
 final="false"
 deprecated="not deprecated"
@@ -216709,28 +216698,6 @@
 visibility="public"
>
</method>
<method name="getDefaultInAnimation"
 return="android.view.animation.Animation"
 abstract="false"
 native="false"
 synchronized="false"
 static="false"
 final="false"
 deprecated="not deprecated"
 visibility="public"
>
</method>
<method name="getDefaultOutAnimation"
 return="android.view.animation.Animation"
 abstract="false"
 native="false"
 synchronized="false"
 static="false"
 final="false"
 deprecated="not deprecated"
 visibility="public"
>
</method>
<method name="getDisplayedChild"
 return="int"
 abstract="false"
@@ -216929,23 +216896,6 @@
 visibility="public"
>
</method>
<method name="showOnly"
 return="void"
 abstract="false"
 native="false"
 synchronized="false"
 static="false"
 final="false"
 deprecated="not deprecated"
 visibility="protected"
>
<parameter name="childIndex" type="int">
</parameter>
<parameter name="animate" type="boolean">
</parameter>
<parameter name="onLayout" type="boolean">
</parameter>
</method>
<method name="showPrevious"
 return="void"
 abstract="false"
@@ -230267,6 +230217,37 @@
</parameter>
</method>
</interface>
<class name="StackView"
 extends="android.widget.AdapterViewAnimator"
 abstract="false"
 static="false"
 final="false"
 deprecated="not deprecated"
 visibility="public"
>
<constructor name="StackView"
 type="android.widget.StackView"
 static="false"
 final="false"
 deprecated="not deprecated"
 visibility="public"
>
<parameter name="context" type="android.content.Context">
</parameter>
</constructor>
<constructor name="StackView"
 type="android.widget.StackView"
 static="false"
 final="false"
 deprecated="not deprecated"
 visibility="public"
>
<parameter name="context" type="android.content.Context">
</parameter>
<parameter name="attrs" type="android.util.AttributeSet">
</parameter>
</constructor>
</class>
<class name="TabHost"
 extends="android.widget.FrameLayout"
 abstract="false"
+345 −74

File changed.

Preview size limit exceeded, changes collapsed.

+1 −0
Original line number Diff line number Diff line
@@ -433,6 +433,7 @@ public class RemoteViewsAdapter extends BaseAdapter {
                    int cacheIndex = getCacheIndex(position);
                    FrameLayout flipper = mViewCache[cacheIndex].flipper;
                    flipper.setVisibility(View.VISIBLE);
                    flipper.setAlpha(1.0f);

                    if (indexInfo == null) {
                        // hide the item view and show the loading view
+487 −0

File added.

Preview size limit exceeded, changes collapsed.