我遇到了麻烦。
我正在尝试从片段中获取高度,如下面的布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/container_frag_informacoes_detalhes"
tools:context="br.com.magazineluiza.mobilevendas.userinterface.detalhesproduto.FragInformacoesDetalhesProduto">
<TextView
android:id="@+id/tv_frag_information_detalhes"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/loren_ipsum"/>
从@ string / loren_ipsum获取大文本。
我想要达到它的高度,但我不能。
我该怎么做?
答案 0 :(得分:1)
怎么样:
TextView tv = (TextView) getActivity().findViewbyId(R.id.tv_frag_information_detalhes);
final int height = tv.getHeight();
在onCreateView中。