此库带来了可扩展的布局和各种动画。 可以在任何地方包括可选内容和使用。
![ExpandableRelativeLayout][ExpandableRelativeLayout] ![ExpandableWeightLayout][ExpandableWeightLayout]
![ExampleRecyclerView][ExampleRecyclerView] ![ExampleSearch][ExampleSearch] ![ExampleReadMore][ExampleReadMore]
如果子视图改变大小,expandableRelativeLayout就不起作用了。 此时应该使用ExpandableLinearLayout。
ExpandableRelativeLayout expandableLayout
= (ExpandableRelativeLayout) findViewById(R.id.expandableLayout);
// toggle expand, collapse
expandableLayout.toggle();
// expand
expandableLayout.expand();
// collapse
expandableLayout.collapse();
// move position of child view
expandableLayout.moveChild(0);
// move optional position
expandableLayout.move(500);
// set base position which is close position
expandableLayout.setClosePosition(500);
add xmlns:app="http://schemas.android.com/apk/res-auto"
<com.github.aakira.expandablelayout.ExpandableRelativeLayout
android:id="@+id/expandableLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:ael_expanded="false"
app:ael_duration="500"
app:ael_interpolator="bounce"
app:ael_orientation="vertical">
<TextView
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="sample" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/text"
android:text="sample2" />
</com.github.aakira.expandablelayout.ExpandableRelativeLayout>
如果子视图可能改变大小,则应该使用ExpandableLinearLayout。 例如,它从服务器获取和设置值。 你应该在回收器的视图中使用这个。
// resize expandable layout
ExpandableLinearLayout expandableLayout
= (ExpandableLinearLayout) findViewById(R.id.expandableLayout);
child.setText("Sets text from a server");
expandableLayout.initLayout(); // Recalculate size of children
// recycler view
// you must set a ViewHolder#setIsRecyclable(false) and ExpandableLinearLayout#setInRecyclerView(true)
@Override
public void onBindViewHolder(final ViewHolder holder, final int position) {
holder.setIsRecyclable(false);
holder.expandableLinearLayout.setInRecyclerView(true);
}
You should use this layout if you want to use weight attributes at expandable layout.
ExpandableWeightLayout expandableLayout
= (ExpandableWeightLayout) findViewById(R.id.expandableLayout);
// toggle expand, collapse
expandableLayout.toggle();
// expand
expandableLayout.expand();
// collapse
expandableLayout.collapse();
add xmlns:app="http://schemas.android.com/apk/res-auto"
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
<com.github.aakira.expandablelayout.ExpandableWeightLayout
android:id="@+id/expandableLayout"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="3"
app:ael_duration="1000"
app:ael_interpolator="anticipateOvershoot">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:src="@drawable/sample" />
</com.github.aakira.expandablelayout.ExpandableWeightLayout>
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
</LinearLayout>
expandableLayout.setListener(new ExpandableLayoutListener() {
@Override
public void onAnimationStart() {
}
@Override
public void onAnimationEnd() {
}
// You can get notification that your expandable layout is going to open or close.
// So, you can set the animation synchronized with expanding animation.
@Override
public void onPreOpen() {
}
@Override
public void onPreClose() {
}
@Override
public void onOpened() {
}
@Override
public void onClosed() {
}
});
ExpandableLayoutListenerAdapter
- You can set listeners only you need.
expandableLayout.setListener(new ExpandableLayoutListenerAdapter() {
@Override
public void onPreOpen() {
}
@Override
public void onPreClose() {
}
});
attribute name | description |
---|---|
ael_duration | The length of the expand or collapse animation |
ael_expanded | The layout is expanded if you set true |
ael_defaultChildIndex | The layout is expanded at index of child view. (Only ExpandableRelativeLayout ) |
ael_defaultPosition | The layout is expanded at the position. (Only ExpandableRelativeLayout ) |
ael_orientation | The orientation of animation(horizontal | vertical) |
ael_interpolator | Sets interpolator |
You can use interpolator. It helps the layout animates easily.
Interpolator | value name of attribute |
---|---|
AccelerateDecelerateInterpolator | accelerateDecelerate |
AccelerateInterpolator | accelerate |
AnticipateInterpolator | anticipate |
AnticipateOvershootInterpolator | anticipateOvershoot |
BounceInterpolator | bounce |
DecelerateInterpolator | decelerate |
FastOutLinearInInterpolator | fastOutLinearIn |
FastOutSlowInInterpolator | fastOutSlowIn |
LinearInterpolator | linear |
LinearOutSlowInInterpolator | linearOutSlowIn |
OvershootInterpolator | overshoot |
这些都是支持插入器。 但是,可扩展布局扩展到外部的情况是行不通的。 例如AnticipateInterpolator,AnticipateOvershootInterpolator OvershootInterpolator 我建议在可扩展的布局中使用这样的插值器。
- Not support
- CycleInterpolator
- PathInterpolator
* Mail
- brightnessyin@163.com
## License
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
[ExpandableRelativeLayout]: /art/ExpandableRelativeLayout.gif
[ExpandableWeightLayout]: /art/ExpandableWeightLayout.gif
[ExampleSearch]: /art/ExampleSearch.gif
[ExampleRecyclerView]: /art/ExampleRecyclerview_v1.1.gif
[ExampleReadMore]: /art/ExampleReadMore.gif