1. ホーム
  2. android

[解決済み] AndroidのTextViewに2つの文字列を連結したい, データバインディングアプイ

2022-09-03 04:18:33

質問

使用している DataBinding Apiを使用しています。以下は私のレイアウトです。

レイアウト.xml

<?xml version="1.0" encoding="utf-8"?>
 <layout xmlns:android="http://schemas.android.com/apk/res/android">
  <data>
    <variable name="user" type="testing.sampleapp.com.sampleapp.User"/>
  </data>
<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@{ "Hello " + user.firstName}"/>
</LinearLayout>

TextViewに表示させたいのは こんにちは、ユーザー名です。 . データバインディングapiを使って実現する方法。

どのように解決するのですか?

で連結して グレイブアクセント (`)

android:text="@{`Hello ` + user.firstName}"/>

複数の方法で連結できますので、こちらで確認してください。 2つの文字列を連結してテキストビューに表示する方法