我什至不知道在哪里寻找这样做。我已经使用按钮和文本视图进行了相对布局。
是否可以让用户可以与透明背景交互的顶层(我的相对布局)
然后是底层,即滚动的背景图像。那是用户无法控制的。例如空间的滚动图像。那是不断滚动。
提前致谢
我什至不知道在哪里寻找这样做。我已经使用按钮和文本视图进行了相对布局。
是否可以让用户可以与透明背景交互的顶层(我的相对布局)
然后是底层,即滚动的背景图像。那是用户无法控制的。例如空间的滚动图像。那是不断滚动。
提前致谢
这里的代码看起来像:根据您的需要进行转换-
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot=["true" | "false"] >
<item
android:drawable="@[package:]drawable/drawable_resource_name"
android:duration="integer" />
</animation-list>
RelativeLayout layout = (RelativeLayout) findViewById(R.id.layoutSearch);
Animation a = AnimationUtils.loadAnimation(this, R.anim.push_down);
a=setFillAfter(true);
layout.setLayoutAnimation(new LayoutAnimationController(a));
layout.startLayoutAnimation();