Я пытаюсь сделать макет с этим кодом:
<?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>
, но последнее текстовое представление не видно, даже в предварительном просмотре оно не отображается, оно выглядит так:
Как вы можете видеть, текстовое представление не видно, я не придавал никакого значения, все еще сталкиваясь с этой проблемой.
Также, когда я увеличиваюРазмер textview значение видно, как вы можете видеть здесь: