我有一个RecyclerView
<android.support.v7.widget.RecyclerView
android:id="@+id/activityRecicler"
android:layout_width="match_parent"
android:scrollbars="vertical"
android:layout_height="wrap_content"
app:stackFromEnd="true"
/>
我有一个行布局:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/description"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/solutions"/>
</LinearLayout>
Package 内容可以工作,但我的问题是TextView
和id描述可能会很长,所以,我需要一个滚动的TextView,我该怎么做呢?
6条答案
按热度按时间5lhxktic1#
将布局XML更改为:
然后在你的活动中:
anhgbhbe2#
我是Android的初学者,所以我不知道我的解决方案是否好。我已经按照@Payal的建议添加了Layout Row
在我的ViewHolder中
这是工作。我可以滚动RecyclerView中的TextView
oxalkeyp3#
在viewholder中对您的textview id尝试以下代码。
在
TextView
布局中添加oxiaedzo4#
rowlayout.xml
在活动中
t30tvxxf5#
或者你可以像这样把它 Package 在
scrollview
中或
将这两个属性添加到yout
textview
并在代码中添加以下行
希望这对你有帮助:)
dsf9zpds6#
创建新类
然后在xml中
这很管用!!!