【发布时间】:2019-11-18 05:53:49
【问题描述】:
好的,这似乎是一个简单的问题,但相信我,我已经花费了数小时来完成这个任务。就是想知道cardView的右边能不能稍微带出一个textview。顺便说一句,texview 在许多布局下,例如线性布局和相对布局。
我也尝试在其父布局的 xml 中添加此代码。 android:clipToPadding="false" 和 android:clipChildren="false" 仍然无法正常工作。我不确定为什么它对我不起作用。我附上了我希望 textview 的布局看起来像的图像。我应该在我的 recyclerview 的适配器中添加一些代码吗?请帮忙。提前致谢
<android.support.v7.widget.CardView xmlns:tools="http://schemas.android.com/tools"
xmlns:card_View="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:clipChildren="false"
android:clipToPadding="false"
android:layout_width="match_parent"
android:layout_height="wrap_content"
card_View:cardUseCompatPadding="false">
<LinearLayout
android:id="@+id/random"
android:clipChildren="false"
android:clipToPadding="false"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/random2"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<LinearLayout
android:id="@+id/random3"
android:clipChildren="false"
android:clipToPadding="false"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/random4"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<View
android:id="@+id/random5"
android:layout_width="0dp"
android:layout_height="0dp"/>
<TextView
android:id="@+id/this_is_the_textview_i_want_it_to_come_out_slightly"
android:layout_marginEnd="-5dp"
android:layout_marginRight="-5dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
</LinearLayout>
</android.support.v7.widget.CardView>
下面附上的代码在cardView里面,cardView会被放到recyclerview中
【问题讨论】:
-
请把代码复制到这里
-
@alirezadaryani 我已经添加了 xml 的代码。请帮忙。谢谢
标签: android android-recyclerview android-linearlayout android-cardview android-relativelayout