タグ付けされた質問 「android-textattributes」

23
TextView BOLDで特定のテキストを作成する方法
TextViewの特定のテキストを太字にする方法がわかりません。 こんな感じです txtResult.setText(id+" "+name); 出力を次のようにしたい: 1111ニール idとnameは、データベースから値を取得した変数でありid、太字にしたいのですが、それだけが影響を受けないidため、nameこれを行う方法がわかりません。

25
TextInputLayoutを使用するときにEditTextヒントの色を変更する
TextInputLayoutデザインライブラリの新しいものを使用しています。フローティングラベルを表示したり、色を変更したりできます。残念ながら、実際のEditTextヒントは常に白くなっています。 XML、スタイル、およびプログラムでhintColorを変更してみました。また、を使用してみました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.