gpt4 book ai didi

android - android中的动态相对布局

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

我正在尝试将两张图像放在彼此的 tp 上。我可以让它与 xml 文件一起正常工作,但我想动态地执行此操作。 ctdeasyone 是一个透明图像。

所以这很好..

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<ImageView
android:id="@+id/bck1"
android:src="@drawable/fish2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="fitXY"
android:layout_gravity="center">
</ImageView>

<ImageView
android:id="@+id/bck2"
android:src="@drawable/ctdeasyone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="fitXY"
android:layout_gravity="center">
</ImageView>

</RelativeLayout>

当我这样做的时候。只有第二张图片出现(它是透明的)。任何专家都可以对此提出建议吗?新手在这里......这是我的第一个问题。 TIA。

public class TwoPicksOnEachOther extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

// Grabbing the Application context
final Context context = getApplication();

RelativeLayout relativeLayout = new RelativeLayout(this);

final ImageView iv = new ImageView(this);
iv.setImageResource(R.drawable.fish2);


RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(
RelativeLayout.LayoutParams.FILL_PARENT,
RelativeLayout.LayoutParams.FILL_PARENT);
relativeLayout.addView(iv,lp);

// Creating transparent image
final ImageView iv2 = new ImageView(this);
iv.setImageResource(R.drawable.ctdeasytwo);
RelativeLayout.LayoutParams lp2 = new RelativeLayout.LayoutParams(
RelativeLayout.LayoutParams.FILL_PARENT,
RelativeLayout.LayoutParams.FILL_PARENT);
relativeLayout.addView(iv2,lp2);
setContentView(relativeLayout);

}

}

最佳答案

我不得不把它放在模拟器中玩了一会儿,直到我看到它:

iv.setImageResource(R.drawable.fish2);
(...)
iv.setImageResource(R.drawable.ctdeasytwo);

您永远不会为 iv2 设置图像资源!

我更改了它,现在我按预期看到了两张图片。

关于android - android中的动态相对布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5797076/

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