如果我更改文字大小,它会溢出我的卡片视图如何更改卡片视图大小以调整为当前文本视图大小?
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/cardview"
android:layout_width="match_parent"
android:layout_height="120dp"
card_view:cardElevation="1.5dp"
card_view:cardCornerRadius="0dp"
android:onClick="OnClick">
答案 0 :(得分:0)
如果您想要更改cardview的大小而不是根据文字大小而不是更改android:layout_height="wrap_content"
<android.support.v7.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/cardview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
card_view:cardCornerRadius="0dp"
card_view:cardElevation="1.5dp">
EX:我试过
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/cardview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
card_view:cardBackgroundColor="#85c7dc"
card_view:cardCornerRadius="0dp"
card_view:cardElevation="1.5dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:weightSum="2">
<TextView
android:id="@+id/txtDrVisit_DrName"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="ABC"
android:textSize="25sp"
android:textStyle="bold" />
<TextView
android:id="@+id/txtDrVisit_DrDetails"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="ABC"
android:textSize="45sp"
android:textStyle="normal" />
</LinearLayout>
</android.support.v7.widget.CardView>
</LinearLayout>