私は医療と呼ばれるアクティビティを持っています。医療上の緊急時に何をすべきかを説明するテキストをレイアウトしたいだけです。それはちょうど難しいコードで、dbまたは何か複雑から来る必要はありません。Android - アクティビティの一部のテキストをレイアウトする最善の方法
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Do not move the patient,unless it is necessary, to reduce the risk of possible further injury"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintHorizontal_bias="0.134"
app:layout_constraintVertical_bias="0.032" />
しかし、私は、それは次のようになりますので、それを記述する必要があります。:
I電流はただのTextViewこのようにしてい
- それが必要でない限り、患者を移動しないでください、さらに可能怪我のリスクを減らすために
- 援助をレンダリングし、呼び出し911
- 問い合わせゲイリー・エドワーズ
- デスパッチスタッフ
私は電話番号へのリンクを作ってもいいですか? ありがとうございますが、単純に行を追加するには改行文字を追加することができます
リニアレイアウトで1行に1テキストビューを使用 –