gpt4 book ai didi

android - 如何在 Android 中将下方​​的文本拆分为另一个布局

转载 作者:行者123 更新时间:2023-11-29 17:32:23 26 4
gpt4 key购买 nike

我有这样的布局,但我不能把它变成一个形状

这就是我想要的布局外观,中断文本需要低于 about

About: A car is good to go
So you need things to make it going

但这是我得到的外观,这是我的布局代码,

About: A car is good to go
So you need things to make it going

这是我的布局代码

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/ColorPrimary"
android:textSize="18sp"/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/five"
android:textSize="18sp"/>

</LinearLayout>

如何更改我的布局,以便中断文本可以位于我的布局下方。谢谢

最佳答案

<TextView
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/five"
android:textSize="18sp"/>

我们需要将整个文本放入这个单个 TextView 中。我们检索它并应用一个跨度:

TextView t = findViewByid(R.id.text);
Spannable s = new SpannableString("About: car is good to go so you need things to make it going");
s.setSpan(new ForegroundColorSpan(Color.BLUE), 0, 7, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
t.setText(s);

关于android - 如何在 Android 中将下方​​的文本拆分为另一个布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32374728/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com