คำถามติดแท็ก android-textattributes

23
วิธีสร้างข้อความเฉพาะบน TextView BOLD
ฉันไม่รู้ว่าจะสร้างข้อความเฉพาะบน TextView ให้เป็นตัวหนาได้อย่างไร มันเป็นอย่างนี้ txtResult.setText(id+" "+name); ฉันต้องการให้ผลลัพธ์เป็นเช่นนี้: 1111นีล idและnameเป็นตัวแปรที่ฉันได้รับค่าจากฐานข้อมูลและฉันต้องการทำให้เป็นidตัวหนา แต่เพียงidเพื่อที่nameจะไม่ได้รับผลกระทบฉันไม่รู้ว่าจะทำอย่างไร

26
เปลี่ยนสีคำใบ้ EditText เมื่อใช้ TextInputLayout
ฉันกำลังใช้สิ่งใหม่ TextInputLayoutจากไลบรารีการออกแบบ ฉันสามารถทำให้มันแสดงและเปลี่ยนสีของฉลากลอยได้ น่าเสียดายที่EditTextคำใบ้จริงตอนนี้เป็นสีขาวเสมอ ฉันได้ลองเปลี่ยน hintColor ใน XML สไตล์และการเขียนโปรแกรมแล้วและลองใช้android.support.v7.widget.AppCompatEditText แต่EditTextคำใบ้แสดงสีขาวอยู่เสมอ นี่คือ XML ของฉันสำหรับฉันTextInputLayoutและEditText <android.support.design.widget.TextInputLayout android:layout_width="match_parent" android:layout_height="wrap_content" android.support.design:hintTextAppearance="@style/GreenTextInputLayout"> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/city" android:textColorHint="@color/black" android:hint="@string/city" /> </android.support.design.widget.TextInputLayout> และนี่คือสไตล์ที่ฉันใช้สำหรับTextInputLayout(ฉันพยายามทำให้hintTextColorคุณสมบัติเป็นสีดำ แต่ไม่ได้ทำอะไรให้ฉัน): <style name="GreenTextInputLayout" parent="@style/TextAppearance.AppCompat"> <item name="android:textColor">@color/homestory_green</item> </style>
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.