gpt4 book ai didi

android - 如何在 Activity 中给出段落?

转载 作者:太空宇宙 更新时间:2023-11-03 12:34:12 25 4
gpt4 key购买 nike

我正在为一所大学开发一个应用程序。根据需要,我为每个段落添加了单独的 TextView 段落。有没有办法让我把段落组合起来。这只是我对这是否可能的想法?这是我处理的代码 fragment 。

<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="textPostalAddress"
android:text="Lorem Ipsum is simply dummy text of the printing and typesetting industry." />

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView2"
android:layout_below="@+id/textView2"
android:layout_marginTop="14dp"
android:inputType="numberSigned"
android:text="+91 12 12345678" />

<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView1"
android:layout_below="@+id/textView1"
android:inputType="phone"
android:text="+91 12 12345678" />

<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView3"
android:layout_below="@+id/textView3"
android:autoLink="email"
android:inputType="textEmailAddress"
android:text="admissions@abc.edu" />

在我的代码中,我想将两个电话号码和电子邮件 ID 组合在一个 TextView 中。可能吗?

最佳答案

尝试这种方式,希望这能帮助您解决问题。

ma​​in.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>

MyActivity.java

public class MyActivity extends Activity{

private TextView textView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

textView = (TextView) findViewById(R.id.textView);
String htmlText = "<p> +91 12 12345678 </p> <p> +91 12 12345678 </p> <p> admissions@abc.edu </p>";
textView.setText(Html.fromHtml(htmlText));
}
}

关于android - 如何在 Activity 中给出段落?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24821219/

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