Action test
To specify accepted intent actions, an intent filter can declare zero or more <action> elements. For example:
<intent-filter><action android:name = "android.intent.action.EDIT" />
<action android:name = "android.intent.action.VIEW" />
...
</intent-filter>
To get through this filter, the action specified in the Intent must match one of the actions listed in the filter.
If the filter does not list any actions, there is nothing for an intent to match, so all intents fail the test. However, if an Intent does not specify an action, it will pass the test (as long as the filter contains at least one action).


android:ordering = ["together" | "sequentially" ] >
< objectAnimator
android:propertyName = " string "
android:duration = " int "
android:valueFrom = " float | int | color "
android:valueTo = " float | int | color "
android:startOffset = " int "
android:repeatCount = " int "
android:repeatMode = [" repeat " | "reverse" ]
android:valueType = ["intType" | "floatType" ] />
< animator
android:duration = " int "
android:valueFrom = " float | int | color "
android:valueTo = " float | int | color "
android:startOffset = " int "
android:repeatCount = " int "
android:repeatMode = ["repeat" | "reverse" ]
android:valueType = ["intType" | "floatType" ] />
< set >
...
</set>
</set>
原文地址: http://weibo.com/p/1001603911234926855853?from=page_100505_profile&wvr=6&mod=wenzhangmod