gpt4 book ai didi

安卓 View : hide if layout_height too small

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:27:40 27 4
gpt4 key购买 nike

我只想在屏幕上显示两个 TextView,一个在另一个之上。

TextView B:400dp 高,在底部,TextView A:填充屏幕的其余部分。

但是,如果 TextView A 的高度小于 100dp,则不应显示(只有 TextView A 可见,其余只是空白)。

仅通过 XML 可以实现吗?

目前我正在使用这样的东西:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:gravity="center"
android:orientation="vertical" >

<TextView
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/blue"
android:text="Image A"
android:gravity="center"
android:textSize="40sp" />

<TextView
android:layout_width="fill_parent"
android:layout_height="400dp"
android:background="@color/green"
android:text="Image B: 400dp"
android:gravity="center"
android:textSize="40sp" />

</LinearLayout>

最佳答案

如果您打算在其他几种布局中使用此功能,我会考虑将其构建到自定义 View 中,您可以在其中添加一个额外的属性 customer:minSize=100dp。在该自定义 View 中,您可能会添加 Marko 的建议(即 textview.getHeight > customer:minSize 然后 textview.setVisibility(View.Gone/Invisible)

http://developer.android.com/training/custom-views/index.html http://developer.android.com/guide/topics/ui/custom-components.html... http://mobile.tutsplus.com/tutorials/android/android-sdk-creating-custom-views-2/

否则,我只会在您的 Activity 中实现它。

关于安卓 View : hide if layout_height too small,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16195231/

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