属性wrap_content不起作用

时间:2017-08-23 16:51:04

标签: android android-linearlayout android-wrap-content

我必须在LinearLayout内部使TextView成为水平,在ConstraintLayout内部使其垂直 问题是TextView的属性wrap_content无法正常工作 这是xml文件:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.black_swan.myapplication11.MainActivity"
    tools:layout_editor_absoluteY="81dp"
    tools:layout_editor_absoluteX="0dp">

    <LinearLayout
        android:layout_width="368dp"
        android:layout_height="495dp"
        android:orientation="vertical"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintLeft_toLeftOf="parent">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="horizontal">

            <TextView
                android:id="@+id/textView8"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="TextView" />
        </LinearLayout>

    </LinearLayout>

</android.support.constraint.ConstraintLayout>

这是项目的图像:

here the image of design

2 个答案:

答案 0 :(得分:0)

删除android:layout_weight="1"上的TextView。更多似乎您的TextView'sLinearLayout无效。尽量不要使用不必要的嵌套布局。

答案 1 :(得分:0)

如果使用布局权重,通常会使用0dp的大小作为相应的方向。

  • 0dp水平宽度
  • 垂直高度为0dp

使用权重时,将覆盖wrap_content大小