- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在触摸屏幕时为布局设置动画。如果您触摸屏幕,其上包含按钮的布局应向下移出屏幕,再次触摸屏幕时,布局应在其原始位置出现在屏幕中。
当我通过编程解决问题时,我遇到了问题。当我通过 XML 完成时,它会起作用。
在编程方法中,它第一次工作,第二次不工作。即使我已经观察到,如果我们点击屏幕上的按钮,它会读取所有启动动画的代码,但它不会动画化,但之后如果我们点击布局中添加的按钮,动画就会工作。
代码如下:
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.Gravity;
import android.view.MotionEvent;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;
import android.view.View.OnClickListener;
import android.view.View.OnTouchListener;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.view.animation.LayoutAnimationController;
import android.view.animation.Animation.AnimationListener;
import android.webkit.WebView;
import android.widget.Button;
import android.widget.FrameLayout;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;
import android.widget.RelativeLayout.LayoutParams;
public class BrowserDemo2 extends Activity implements AnimationListener, OnTouchListener, OnClickListener
{
WebView browser;
RelativeLayout parentLayout;
LinearLayout navigationBarOuterLinearLayout;
FrameLayout navigationBarInnerFrameLayout;
Button galleryButton;
Button creditsButton;
Button viewChangeButton;
byte animationType;
public static final byte ANIM_IN = 0;
public static final byte ANIM_OUT = 1;
boolean isNavigationBarVisible = true;
boolean isAnimationInProgress;
@Override
public void onCreate(Bundle icicle)
{
super.onCreate(icicle);
setFullscreen();
setContentView(R.layout.main);
parentLayout = (RelativeLayout) findViewById(R.id.parent);
setNavigationBarLayout();
parentLayout.addView(navigationBarOuterLinearLayout);
animationType = ANIM_OUT;
animController = new LayoutAnimationController(this, null);
}
public void setNavigationBarLayout()
{
navigationBarOuterLinearLayout = new LinearLayout(this);
LayoutParams navigationBarOuterLinearLayoutParams = new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);
navigationBarOuterLinearLayoutParams.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM);
navigationBarOuterLinearLayout.setLayoutParams(navigationBarOuterLinearLayoutParams);
navigationBarOuterLinearLayout.setOrientation(LinearLayout.VERTICAL);
navigationBarInnerFrameLayout = new FrameLayout(this);
LayoutParams navigationBarInnerFrameLayoutParams = new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);
navigationBarInnerFrameLayoutParams.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM);
navigationBarInnerFrameLayout.setLayoutParams(navigationBarInnerFrameLayoutParams);
navigationBarInnerFrameLayout.setBackgroundResource(R.drawable.uitabbar);
navigationBarInnerFrameLayout.setPadding(0, 5, 0, 0);
galleryButton = new Button(this);
galleryButton.setOnClickListener(this);
galleryButton.setText("Gallery");
FrameLayout.LayoutParams galleryButtonParams = new FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, Gravity.CENTER_VERTICAL | Gravity.LEFT);
galleryButton.setLayoutParams(galleryButtonParams);
creditsButton = new Button(this);
creditsButton.setOnClickListener(this);
creditsButton.setText("Credits");
FrameLayout.LayoutParams creditsButtonParams = new FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, Gravity.CENTER_VERTICAL | Gravity.CENTER_HORIZONTAL);
creditsButton.setLayoutParams(creditsButtonParams);
viewChangeButton = new Button(this);
viewChangeButton.setOnClickListener(this);
viewChangeButton.setText("Chnage View");
FrameLayout.LayoutParams viewChangeButtonParams = new FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, Gravity.CENTER_VERTICAL | Gravity.RIGHT);
viewChangeButton.setLayoutParams(viewChangeButtonParams);
navigationBarInnerFrameLayout.addView(galleryButton);
navigationBarInnerFrameLayout.addView(creditsButton);
navigationBarInnerFrameLayout.addView(viewChangeButton);
navigationBarOuterLinearLayout.addView(navigationBarInnerFrameLayout);
}
public void setFullscreen()
{
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
}
public void setAnimations()
{
switch(animationType)
{
case ANIM_IN:
{
isAnimationInProgress = true;
navigationBarOuterLinearLayout.setVisibility(View.VISIBLE);
animateLayout(R.anim.lower_navigation_bar_in, navigationBarOuterLinearLayout);
// parentLayout.requestFocus();
// parentLayout.requestFocusFromTouch();
// parentLayout.requestLayout();
break;
}
case ANIM_OUT:
{
isAnimationInProgress = true;
animateLayout(R.anim.lower_navigation_bar_out, navigationBarOuterLinearLayout);
break;
}
}
}
@Override
public boolean onTouchEvent(MotionEvent event)
{
if(event.getAction() == MotionEvent.ACTION_UP)
{
Log.v("onTouch", "in touch realease..");
setAnimations();
}
return true;
}
Animation layoutAnimation;
LayoutAnimationController animController;
public void animateLayout(int type, LinearLayout layout)
{
layoutAnimation = AnimationUtils.loadAnimation(this, type);
layoutAnimation.setAnimationListener(this);
animController.setAnimation(layoutAnimation);
layout.setLayoutAnimation(animController);
layout.startLayoutAnimation();
}
@Override
public void onAnimationEnd(Animation animation)
{
if(animationType == ANIM_OUT && isNavigationBarVisible)
{
animationType = ANIM_IN;
isNavigationBarVisible = false;
navigationBarOuterLinearLayout.setVisibility(View.INVISIBLE);
}
else
{
animationType = ANIM_OUT;
isNavigationBarVisible = true;
}
isAnimationInProgress = false;
}
@Override
public void onAnimationRepeat(Animation animation)
{
// TODO Auto-generated method stub
}
@Override
public void onAnimationStart(Animation animation)
{
// TODO Auto-generated method stub
}
@Override
public boolean onTouch(View v, MotionEvent event)
{
return false;
}
@Override
public void onClick(View v)
{
// TODO Auto-generated method stub
}
最佳答案
我在一个非常相似的问题上挣扎了比我愿意承认的更多的时间。我有两个观点,我正在一起移动和交叉淡入淡出。来回取决于状态。一个方向行得通,但另一个方向行不通。一个是通过键盘操作激活的,另一个是通过按下按钮激活的。
因为其中一个是文本输入,所以我使用 View.GONE
来设置可见性。我认为这就是问题所在。我相信直到动画完成后 View 才被设置为 View.VISIBLE
(此时我还是执行了 View.GONE)。我无法验证这一点,但是当我删除所有 setVisibility()
调用并进行纯粹的 alpha 更改时,一切开始为我工作。
我还应该注意,我没有使用 setFillAfter()
之类的东西,而是自己计算了位置,因为只有 View 上的绘制部分会随之移动,而不是可操作(可点击)区域.
关于Android:翻译动画是第一次而不是第二次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3466271/
翻译自官方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 {
我是一名优秀的程序员,十分优秀!