gpt4 book ai didi

java - 使用白色图像隐藏 Android Studio 中的所有 textView

转载 作者:行者123 更新时间:2023-12-01 14:26:24 25 4
gpt4 key购买 nike

我试图用白色图像隐藏我屏幕上的所有内容 10 秒,但无论如何,文本似乎都出现在白色图像之上。有没有办法使用白色图像隐藏 textView(或将来的任何其他 imageView)?谢谢!

这是我的主要 Activity 类:

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final ImageView splash = findViewById(R.id.imageView);
splash.setScaleType(ImageView.ScaleType.FIT_XY);
splash.postDelayed(new Runnable() {
@Override
public void run() {
splash.setVisibility(View.GONE);
}
}, 10000);
}}

这是我的 XML 文件:

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="24sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_bias="0.544"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/white" />

<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="172dp"
android:layout_marginTop="268dp"
android:text="TextToHide"
android:textSize="36sp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

enter image description here

enter image description here

最佳答案

如果你想让 ImageView 出现在 TextView 你必须先添加到 XML TextView 然后 ImageView 就像这个:

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="24sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_bias="0.544"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />


<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="172dp"
android:layout_marginTop="268dp"
android:text="TextToHide"
android:textSize="36sp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/white" />

现在你的 TextView 将落后于 ImageView

我不知道你想做什么,但我认为将 TextView 可见性设置为 GONEINVISIBLE 会更容易而不是将 ImageView 放在您要隐藏的内容上。

关于java - 使用白色图像隐藏 Android Studio 中的所有 textView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62843356/

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