Невозможно увидеть текстовое представление - PullRequest
0 голосов
/ 13 июня 2018

Я пытаюсь сделать макет с этим кодом:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:card_view="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="12dp"
    android:layout_marginRight="12dp"
    >
    <android.support.v7.widget.CardView
        app:cardCornerRadius="@dimen/cardview_corner_radius"
        app:cardElevation="2dp"
        card_view:cardUseCompatPadding="true"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:cardBackgroundColor="#f27181"
        android:id="@+id/charity_overview_card"
        >
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical">
    <com.sharesmile.share.views.LBTextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="14sp"
        android:textColor="@color/white"
        android:padding="9dp"
        android:text="Women Empowerment"
        android:id="@+id/iv_charity_category_title"

        />

    <ImageView
        android:background="@color/colorPrimaryDark"
        android:layout_width="128dp"
        android:layout_height="126dp"
        android:id="@+id/iv_charity_overview"

        />
    <LinearLayout

        android:layout_width="match_parent"
        android:layout_height="wrap_content"

        >
        <com.sharesmile.share.views.LBTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/tv_charity_amount"
            android:textColor="@color/black"
            android:textSize="15sp"
            android:text="Test"

            />
    </LinearLayout>
        </LinearLayout>
    </android.support.v7.widget.CardView>
</LinearLayout>

, но последнее текстовое представление не видно, даже в предварительном просмотре оно не отображается, оно выглядит так:

enter image description here

Как вы можете видеть, текстовое представление не видно, я не придавал никакого значения, все еще сталкиваясь с этой проблемой.

Также, когда я увеличиваюРазмер textview значение видно, как вы можете видеть здесь:

enter image description here

Ответы [ 2 ]

0 голосов
/ 13 июня 2018

LinearLayout внутри другого родительского LinearLayout с динамическим размером вызовет проблемы такого типа.Вам следует максимально избегать вложения макета в макет.

Эту проблему можно просто устранить, удалив ориентацию родительского макета.

Для улучшения

<CardView>
<LinearLayout> vertical

//Add 'N' child items here

</LinearLayout> 
</CardView>
0 голосов
/ 13 июня 2018

Измените следующие свойства вашего основного LinearLayout, сделайте высоту и ширину равными match_parent

android:layout_width="match_parent"
android:layout_height="match_parent"
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...