- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我有一个应用程序,当用户点击 button
时,将为带按钮的 layout
执行 animation
(例如 滑动菜单
),然后如果他点击另一个按钮,它必须使第一个布局不可见或消失,然后是新布局。
但是,当我尝试在 AnimationStart
上制作带有不可见按钮的 layout
时,它不会那样做。
我已经从这里尝试了一些解决方案:
Why doesn't setvisibility work after a view is animated
Setvisibilityview Gone doesn't disappear a view
但没有任何效果!
有什么帮助吗??
Java代码
(两个按钮相同)
btn_home1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
layout1.setVisibility(View.VISIBLE);
btn_home.setVisibility(View.VISIBLE);
btn_book.setVisibility(View.VISIBLE);
btn_find_us.setVisibility(View.VISIBLE);
btn_menu.setVisibility(View.VISIBLE);
TranslateAnimation slide = new TranslateAnimation(-100, 0, 0,0 );
slide.setDuration(1000);
slide.setFillAfter(true);
slide.setAnimationListener(new Animation.AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
btn_home2.setVisibility(View.GONE);
btn_book2.setVisibility(View.GONE);
btn_find_us2.setVisibility(View.GONE);
btn_menu2.setVisibility(View.GONE);
layout2.setVisibility(View.GONE);
}
}, 0);
btn_home.setClickable(false);
btn_book.setClickable(false);
btn_find_us.setClickable(false);
btn_menu.setClickable(false);
}
@Override
public void onAnimationEnd(Animation animation) {
btn_home.setClickable(true);
btn_book.setClickable(true);
btn_find_us.setClickable(true);
btn_menu.setClickable(true);
}
@Override
public void onAnimationRepeat(Animation animation) {
}
});
btn_menu.startAnimation(slide);
btn_book.startAnimation(slide);
btn_find_us.startAnimation(slide);
btn_home.startAnimation(slide);
layout1.startAnimation(slide);
}
});
XML
代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:background="#BE2625" >
<Button
android:id="@+id/btn_home1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="150dp"
android:text="342"
/>
<Button
android:id="@+id/btn_home11"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="250dp"
android:text="34243"
/>
<LinearLayout
android:id="@+id/lala"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#80000000"
android:visibility="gone"
android:orientation="vertical">
<Button
android:id="@+id/btn_home"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
/>
<Button
android:id="@+id/btn_book"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
/>
<Button
android:id="@+id/btn_find_us"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
/>
<Button
android:id="@+id/btn_menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
/>
</LinearLayout>
<LinearLayout
android:id="@+id/lala1"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#80000000"
android:visibility="gone"
android:orientation="vertical">
<Button
android:id="@+id/btn_home2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
/>
<Button
android:id="@+id/btn_book2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
/>
<Button
android:id="@+id/btn_find_us2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
/>
<Button
android:id="@+id/btn_menu2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
/>
</LinearLayout>
</RelativeLayout>
最佳答案
调用 View 的 clearAnimation 解决了这个问题。在我的例子中,我想在将 fillAfter 设置为 true 后将 View 设置回其原始位置。
关于android - View.GONE 在翻译动画后不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22615558/
翻译自官方wiki: https://github.com/facebook/rocksdb/wiki/Write-Stalls 转载请注明出处: https://www.cnblogs.c
译者注:在微服务架构设计,构建API和服务间通信技术选型时,对 REST 和 gRPC 的理解和应用还存在知识盲区,近期看到国外的这篇文章: A detailed comparison of
rocksdb调试指引 翻译自官方wiki: https://github.com/facebook/rocksdb/wiki/RocksDB-Tuning-Guide 转载请注明出处: h
传统的ASP.NET Web Forms是一个非常好的主意,但现实需求非常复杂。随着时间的推移,现实世界的项目暴露出Web Forms的一些不足之处: “沉重的”视图状态:现实中在http请求之间
翻译自:Top 10 questions of Java Strings 简单地说,”==”测试两个字符串的引用是否相同,equals()测试两个字符串的值是否相同。除非你希望检
你好,今天我要和大家分享一些东西,举例来说这个在JavaScript中用的很多。我要讲讲回调(callbacks)。你知道什么时候用,怎么用这个吗?你真的理解了它在java环境中的用法了吗?当我也问
Java多线程面试问题 1. 进程和线程之间有什么不同? 一个进程是一个独立(self contained)的运行环境,它可以被看作一个程序或者一个应用。而线程是在进程中执行的一个
原文: [A Dive into .Net 8 Native AOT and Efficient Web Development] 作者: [sharmila subbiah] 引言 随着 .NE
这是Fiddle 是否可以在 angular-translate 中检查其他语言的键值是否可用,然后它可以从其他语言中提取该键值? 就像在示例中,我有英语和西类牙语。并且一个键值(例如“CONFIRM
我希望能够使用 $this->__('String to translate')在外部脚本中。我该怎么做呢? Magento 版本 1.5.1.0 . 最佳答案 我认为设置语言环境的正确方法是: Ma
我有一个开关小部件,它使用自定义数据属性值来标记自己。 .switch.switch-text .switch-label::before { right: 1px; color: #c2cf
是否有人遇到过这样的情况:用 Java 编写并由(例如)法国程序员编写的现有代码库必须转换为英语程序员可以理解的代码?这里的问题是变量/方法/类名称、注释等都将采用该特定语言。 现在有可用的自动化解决
维基百科和其他一些网站将解释器描述为将代码从某种高级语言翻译成某种低级语言的翻译器。然而,有很多解释,包括在 stackoverflow 中,它说解释器直接执行作为输入的指令,而无需事先转换。那么解释
我想将基本动画应用于自定义单元格中的某些元素,例如标签、图像:特别是,我想让这些动画在我触摸单元格内部时也启动。我是初学者,我只学会了使用 animateWithDuration 和 transiti
这个问题在这里已经有了答案: NSDateFormatter and current language in iOS11 (5 个回答) 已关闭 3 年前。 当使用这样的 DateComponentF
我想在点击 var about 时移动 div.willshow。但我单击那个 btn,只有它获得类 active。然后我再次单击那个 btn 它失去了类。如果我再点击一次,每项任务都无法正常工作。
我想要一个按钮在悬停时向下移动几个像素,但它又回来了。当您还在上面徘徊时,它不应该留在原处吗? Email Me .btn {background: #2ecc71; padding: .5em 1e
在我的应用程序中,我想添加功能将页面翻译为用户在浏览器中设置的所有语言,如果没有可用的语言,则翻译为默认英语...问题是浏览器与语言支持不一致。我找到了一个解决方法,我对一些返回用户语言的 Web 服
我的应用程序有一个 Help.htm 文件,用谷歌翻译翻译得相当好。我想将菜单项标记为“请勿翻译”,但我发现并尝试过的 HTML 标签都不起作用。对于以下内容,我使用了谷歌翻译网站 - 它翻译了我没想
我有以下代码: span { width:200px; height:100px; background-color:red; border:1px solid black; } span.c2 {
我是一名优秀的程序员,十分优秀!