在我的片段中,我在LinearLayout中有几个TextView。我在onViewCreated()中动态设置文本。 高度在XML-Layout中通过android:layout_height =“wrap_content”设置。 但是,高度不适应内容。他们总是保持相同的高度。
这是XML:
<ScrollView 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:background="@color/my_white_color">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/my_white_color"
android:padding="10dp">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/seminarImageView"
android:scaleType="fitCenter"
android:background="@color/gray3"
android:padding="1dp"
android:adjustViewBounds="true"
android:layout_gravity="center_horizontal" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/titelTextView"
android:textColor="@color/blue_heading"
android:textSize="24sp" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/teaserTextView"
android:textColor="@color/blue1"
android:textSize="18sp" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/bodyTextView"
android:textColor="@color/blue1"
android:textSize="15sp" />
</LinearLayout>
有什么建议吗?
答案 0 :(得分:0)
尝试在设置文本后调用requestLayout()。
我不确定,但是在布局视图后可以调用onViewCreated()。