gpt4 book ai didi

android - float 操作按钮变形

转载 作者:太空狗 更新时间:2023-10-29 16:35:16 25 4
gpt4 key购买 nike

我想制作this ,但我没有找到任何 tuts 或任何制作方法。 (它在谷歌网站上称为 Morph)任何人都可以告诉我如何或发送一些引用吗?

编辑:

我想将布局从 gone 设置为 visible ... 你不知道我应该什么时候做 shape.setVisibility(View.VISIBLE) 吗?我试过了,但是直到第二次点击按钮动画才会开始。 (在第一次点击布局只是设置可见没有动画)

fragment 布局:

<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusable="true"
android:gravity="top"
android:padding="15dp" />


<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/circle"
android:visibility="gone">

</LinearLayout>

<ImageButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:background="@color/transparent"
android:contentDescription="share"
android:padding="15dp"
android:src="@drawable/ic_share_55x55px" />

fragment :

        ImageButton fab = (ImageButton) view.findViewById(R.id.share);
fab.setOnClickListener(new View.OnClickListener() {
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
@Override
public void onClick(View view) {
LinearLayout shape = (LinearLayout) getActivity().findViewById(R.id.circle);
// Create a reveal {@link Animator} that starts clipping the view from
// the top left corner until the whole view is covered.
Animator animator = ViewAnimationUtils.createCircularReveal(
shape,
shape.getWidth() - 130,
shape.getHeight()- 130,
0,
(float) Math.hypot(shape.getWidth(), shape.getHeight()));

// Set a natural ease-in/ease-out interpolator.
animator.setInterpolator(new AccelerateDecelerateInterpolator());

animator.setDuration(400);

// Finally start the animation
animator.start();
}
});

最佳答案

您需要为 View 设置动画(在此示例中为 LinearLayout)。将 createCircularReveal 的 x 和 y 值设置为 fab 按钮。

fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
LinearLayout shape = (LinearLayout) rootView.findViewById(R.id.circle);
// Create a reveal {@link Animator} that starts clipping the view from
// the top left corner until the whole view is covered.
Animator animator = ViewAnimationUtils.createCircularReveal(
shape,
0,
0,
0,
(float) Math.hypot(shape.getWidth(), shape.getHeight()));

// Set a natural ease-in/ease-out interpolator.
animator.setInterpolator(new AccelerateDecelerateInterpolator());

// Finally start the animation
animator.start();
}
});

这是createCircleReveal的信息

createCircularReveal(View view,
int centerX, int centerY, float startRadius, float endRadius);

示例项目:

https://github.com/googlesamples/android-RevealEffectBasic/

更新

与其将 View 设置为 GONE,不如将其设置为 INVISIBLE。还要使 View setEnabled(false) 以防止它被触摸等。

LinearLayout shape;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
final View view = inflater.inflate(R.layout.reveal_effect_basic, container, false);
shape = (LinearLayout) view.findViewById(R.id.circle);
shape.setVisibility(View.INVISIBLE);
shape.setEnabled(false);
ImageButton fab = (ImageButton) view.findViewById(R.id.share);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Animator animator = ViewAnimationUtils.createCircularReveal(
shape,
shape.getWidth() - 130,
shape.getHeight() - 130,
0,
(float) Math.hypot(shape.getWidth(), shape.getHeight()));
shape.setVisibility(View.VISIBLE);
animator.setInterpolator(new AccelerateDecelerateInterpolator());
if (shape.getVisibility() == View.VISIBLE) {
animator.setDuration(400);
animator.start();
shape.setEnabled(true);
}
}
});

关于android - float 操作按钮变形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30426760/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com