如何使用幻灯片将相对布局添加到相对布局?

时间:2016-05-09 03:54:47

标签: java android layout relativelayout

我有一个相对布局,其中我添加了第二个相对布局,其中包含4个按钮。当我做: relativeLayout1.addView(relativeLayout2,params) 我希望增加的相对布局与4个按钮从右向左滑动。

example

这有可能吗?

的xml:

<translate xmlns:android="http://schemas.android.com/apk/res/android" android:duration="500" android:fromXDelta="100%" android:toXDelta="0%" > </translate>

代码: ```

public Panel(Context context) {
    super(context);

    this.setBackgroundColor(Color.BLACK);
    this.setId(R.id.panel);

    right_menubar = new RelativeLayout(context);
    right_menubar.setId(R.id.panel_indicators);

    plp_right_menu_bar = new RelativeLayout.LayoutParams(100, 100);

    this.addView(right_menubar, plp_right_menu_bar);

    Animation fadeIn = AnimationUtils.loadAnimation(context, R.animator.anim);
    right_menubar.startAnimation(fadeIn);

}

2 个答案:

答案 0 :(得分:0)

而不是100%0%使用100%p0%p

%p表示其父级的百分比。我认为这就是你要做的事情。

答案 1 :(得分:0)

现在正在运作,

right_menubar.setId(R.id.panel_indicators);
plp_right_menu_bar = new RelativeLayout.LayoutParams(100, 100);
plp_right_menu_bar.addRule(RelativeLayout.ALIGN_PARENT_RIGHT);
this.addView(right_menubar, plp_right_menu_bar);
right_menubar.startAnimation(AnimationUtils.loadAnimation(this.getContext(), R.animator.anim));

无需在动画前将其设置为不可见。