获取 WRAP_CONTENT 高度是多少

Posted

技术标签:

【中文标题】获取 WRAP_CONTENT 高度是多少【英文标题】:Get what the WRAP_CONTENT height would be 【发布时间】:2017-04-22 05:21:51 【问题描述】:

我的目的是创建一个不可见的 LinearLayout,当单击特定按钮时,它会以动画形式出现。为此,我将默认高度设置为 WRAP_CONTENT,在应用程序启动时获取高度,将高度设置为 0,并在我单击按钮时启动动画。代码如下:

linearLayout.post(new Runnable() 
    @Override
    public void run()
        height = linearLayout.getMeasuredHeight();
        linearLayout.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, 0));
    
);


findViewById(R.id.btnOperator).setOnClickListener(new View.OnClickListener() 
    @Override
    public void onClick(View view) 
        Animation ani = new ShowAnim(linearLayout, height/* target layout height */);
        ani.setDuration(1000/* animation time */);
        linearLayout.startAnimation(ani);

    
);

这项工作相当不错,但我想做一些不同的事情。我希望默认高度为 0,然后计算 WRAP_CONTENT 高度,并将其传递给:

Animation ani = new ShowAnim(linearLayout, height/* target layout height */);

我怎么能这样做?我搜索过,但什么都没找到。

【问题讨论】:

【参考方案1】:

试试这个代码:

linearLayout.measure(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
height = linearLayout.getMeasuredHeight();

【讨论】:

以上是关于获取 WRAP_CONTENT 高度是多少的主要内容,如果未能解决你的问题,请参考以下文章

异常的 WRAP_CONTENT 行为

Android中LinearLayout或ListView的android:layout_width="wrap_content"如何限制最高高度

Leanback VerticalGridView 高度:wrap_content

安卓 |滚动视图 |高度 wrap_content

当孩子的高度是 wrap_content 时,约束布局正在占用全宽

Android 高度 wrap_content 与固定比率