如何创建动画展开的菜单

时间:2013-09-17 08:08:44

标签: android android-animation android-view

我想创建附加图像中的动画菜单。

enter image description here

当按下圆形按钮(使用向上箭头)时,它将向上扩展(如第二张图像中所示)。注意:图像不按比例绘制,请原谅我。

enter image description here

我的粗略想法将是这样的:

  • 在展开的菜单中,第一行和第二行具有相同的视图
    类型,所以我将为该视图创建一个布局文件
  • 第三行会 是另一种布局。
  • 使用容器(FrameLayout)来托管该回合 ImageButton(带箭头的那个)
  • onCreate活动, 给容器充气,添加以上所有视图,但只设置可见 到第一行和圆形按钮。
  • 当圆形按钮是 切换,只是设置可见/不可见的其他视图。

我的问题:

  • 我的方法有什么问题,指向一个好教程的指针?
  • 容器应该是FrameLayout还是其他什么?
  • 在设置可见/不可见的其他视图时,如何创建真正扩展和折叠的效果?

对不起,如果问题含糊不清。 TKS。

2 个答案:

答案 0 :(得分:1)

您可以使用Sliding Drawer

example here启发..

这是完整的代码..

public class SlidingDrawerActivity extends Activity implements OnClickListener {
Button slideButton,b1, b2,b3;
SlidingDrawer slidingDrawer;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_sliding_drawer);
slideButton = (Button) findViewById(R.id.slideButton);
slidingDrawer = (SlidingDrawer) findViewById(R.id.SlidingDrawer);
b1 = (Button) findViewById(R.id.Button01);
b2 = (Button) findViewById(R.id.Button02);
b3 = (Button) findViewById(R.id.Button03);
b1.setOnClickListener(this);
b2.setOnClickListener(this);
b3.setOnClickListener(this);
slidingDrawer.setOnDrawerOpenListener(new OnDrawerOpenListener() {
@Override
public void onDrawerOpened() {
slideButton.setText("V");
}
});
slidingDrawer.setOnDrawerCloseListener(new OnDrawerCloseListener() {
@Override
public void onDrawerClosed() {
slideButton.setText("^");
}
});
}
@Override
public void onClick(View v) {
Button b = (Button)v;
Toast.makeText(SlidingDrawerActivity.this, b.getText() + " is Clicked :)", Toast.LENGTH_SHORT).show();
}
} 

<强> activity_sliding_drawer.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="Drag the control at the bottom"
android:textSize="20dp"
tools:context=".SlidingDrawerActivity" />

<SlidingDrawer
android:layout_alignParentBottom="true"
android:id="@+id/SlidingDrawer"
android:layout_width="wrap_content"
android:layout_height="250dip"
android:content="@+id/contentLayout"
android:handle="@+id/slideButton"
android:orientation="vertical"
android:padding="10dip" >

<Button
android:id="@+id/slideButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="^"
>
</Button>

<LinearLayout
android:id="@+id/contentLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dip" >

<Button
android:id="@+id/Button01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="2dp"
android:text="Button 1" >
</Button>

<Button
android:id="@+id/Button02"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="2dp"
android:text="Button 2" >
</Button>
<Button
android:id="@+id/Button03"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="2dp"
android:text="Button 3" >
</Button>
</LinearLayout>
</SlidingDrawer>

</RelativeLayout>

答案 1 :(得分:1)

检查这个很棒的图书馆:

https://github.com/umano/AndroidSlidingUpPanel

在Google Play音乐中实现了相同的模式。