-1
我希望兩個不同的文本應出現在單個EditText中。如何在單個EditText中顯示兩個文本
我試過這樣
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:textSize="25dp"
android:editable="false"
android:textColor="@color/white"
android:text="+91"
android:layout_marginTop="20dp"
android:theme="@style/Regestration_edit_text"
android:id="@+id/rhs_country_code"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<EditText
android:textColorHint="@color/white"
android:textSize="25dp"
android:hint="Mobile Number"
android:layout_marginTop="20dp"
android:theme="@style/Regestration_edit_text"
android:id="@+id/rhs_mobile_number"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
誰能幫助我在這?
可以Concat的兩個字符串,並顯示它。 –
'editText.setText(「+ 91」+ mobileNumber);' –
謝謝@MuhammadBabar –