ConstraintLayout将TextView关闭屏幕

时间:2018-04-25 20:25:29

标签: android android-constraintlayout

我有一个带有ImageView和TextView的XML文件。每次填充TextView时,文本都会从屏幕上消失。我看了其他有同样问题的人,常见的解决办法似乎是将Textview的宽度设置为0dp。这对我没用。想知道是否有人知道为什么?

这是我的constraintLayout XML文件:

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto">

<ImageView
    android:id="@+id/weather_icon"
    app:layout_constraintRight_toLeftOf="@id/weather_data"
    android:layout_width="50dp"
    android:layout_height="match_parent" />

<TextView
    android:id="@+id/weather_data"
    android:text="EXAMPLE"
    android:textStyle="bold"
    android:paddingRight="16dp"
    style="@style/TextAppearance.AppCompat.Large"
    app:layout_constraintLeft_toRightOf="@id/weather_icon"
    app:layout_constraintEnd_toEndOf="parent"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/> 

这就是它的样子,文字明显被切断了:

enter image description here

3 个答案:

答案 0 :(得分:1)

我得到了问题的解决方案,只需使用它:

<?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">
    <ImageView
        android:id="@+id/weather_icon"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toLeftOf="@id/weather_data"
        android:layout_width="50dp"
        android:layout_height="wrap_content" />

    <TextView
        android:id="@+id/weather_data"
        android:text="EXAMPLE "
        android:textStyle="bold"
        android:paddingRight="16dp"
        style="@style/TextAppearance.AppCompat.Large"
        app:layout_constraintLeft_toRightOf="@id/weather_icon"
        app:layout_constraintRight_toRightOf="parent"
        android:layout_width="0dp"
        android:layout_height="wrap_content"/>
</android.support.constraint.ConstraintLayout>

答案 1 :(得分:0)

您应该将TextView的宽度设置为match_constraint,在XML中,0dp.iframe { border: 1px solid black; width: 350px; height: 350px; resize: both; overflow: auto; } .wrapper { background-color: #c05046; height: 100%; display: flex; } .image { margin: 0 auto; max-width: 100%; max-height: 100%; object-fit: contain; }

我看到你正在使用左/右和开始/结束符号。坚持只有其中一个。

我鼓励您使用开始/结束表示法,因为可能有使用您的应用的设备,他们的语言是从右到左阅读的语言,即:阿拉伯语,所以使用开头/结尾你没有担心这些设备。

答案 2 :(得分:0)

感谢Sandeep和Martin。我结合了他们的建议,这在布局中很有效:

  <ImageView
    android:id="@+id/weather_icon"
    app:layout_constraintEnd_toStartOf="@id/weather_data"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    android:layout_width="50dp"
    android:layout_height="wrapcontent" />

<TextView
    android:id="@+id/weather_data"
    android:text="EXAMPLE"
    android:textStyle="bold"
    android:paddingRight="16dp"
    app:layout_constraintStart_toEndOf="@id/weather_icon"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    style="@style/TextAppearance.AppCompat.Large"
    android:layout_width="0dp"
    android:layout_height="wrap_content" />