在CardView中显示TextView可以通过以下步骤实现:
XML布局文件示例:
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardCornerRadius="8dp"
app:cardElevation="4dp">
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Hello, CardView!"
android:textSize="18sp"
android:padding="16dp" />
</androidx.cardview.widget.CardView>
// 找到CardView
CardView cardView = findViewById(R.id.cardView);
// 找到TextView
TextView textView = cardView.findViewById(R.id.textView);
// 设置TextView的内容
textView.setText("Hello, CardView!");
这样就可以在CardView中显示TextView了。
领取专属 10元无门槛券
手把手带您无忧上云