什么是Android提示的颜色代码?

时间:2014-03-11 13:17:34

标签: java android colors hex

Android:提示使用的颜色代码是什么? 我的意思是浅灰色。

8 个答案:

答案 0 :(得分:41)

R: 128 G: 128 B: 128

#808080

答案 1 :(得分:16)

你的xml中的

使用它:

    android:textColor="?android:textColorHint"

答案 2 :(得分:6)

尝试#a8a8a8 :)

在res / value文件夹

中创建 color.xml 文件

然后定义它:

<?xml version="1.0" encoding="utf-8"?>
<resources>
 <color name="gray">#a8a8a8</color>
</resources>

然后像这样使用它:

android.graphics.Color.gray;

答案 3 :(得分:2)

要获取提示颜色,可以使用getCurrentHintTextColor()。 然后你需要将int转换为十六进制格式。 例如:

EditText et = (EditText) findViewById(R.id.edit_text);
        int c = et.getCurrentHintTextColor();
        Log.d("Hint color", String.format("%X", c));

答案 4 :(得分:0)

最佳方法是使用R,G,B通道输入颜色值。 对于灰色,

    R=127 (hex = 7F), 
    G=127 (hex = 7F), 
    B=127 (hex = 7F),
    Hence, color-value = #7F7F7F -> go ahead and use this for gray color

或者,如果你很懒,不想做上面的数学运算 - 你可以选择使用内置的颜色选项。例如,在一个简单的TextView

android:textColor="@android:color/black"

还有更多选项,在颜色/ 显示其他可能的选项后点击 Ctrl + Space

希望这有帮助。

答案 5 :(得分:0)

在来源中,整体主题:

<color name="hint_foreground_holo_light">#808080</color>
<color name="hint_foreground_holo_dark">#808080</color>

材料主题:

<color name="foreground_material_dark">@android:color/white</color>
<item format="float" name="hint_alpha_material_dark" type="dimen">0.50</item>

<color name="foreground_material_light">@android:color/black</color>      
<item format="float" name="hint_alpha_material_light" type="dimen">0.38</item>

因此,对于浅色主题,您可以使用#61000000 //black 38%

和深色主题#80ffffff //white 50%

答案 6 :(得分:0)

像这样创建一个适配器

spring.datasource.url=jdbc:mysql://localhost:3306/test
spring.datasource.driverClassName=com.mysql.cj.jdbc.Driver
spring.datasource.username=test
spring.datasource.password=test
spring.datasource.jpa.show-sql=true
spring.jpa.open-in-view=false

logging.level.org.hibernate.SQL=DEBUG

这是我的 class SpinnerAdapter(context: Context, items: List<String>) : ArrayAdapter<String>(context, R.layout.spinner_item_layout, items) { override fun getDropDownView(position: Int, convertView: View?, parent: ViewGroup): View { val spinnerItemView = super.getDropDownView(position, null, parent) as TextView spinnerItemView.setBackgroundResource(R.drawable.light_gray_border_bottom_bg) // optional( here i am giving a style for spinner item) if (position == 0) { spinnerItemView.setTextColor( ContextCompat.getColor( context, R.color.hintColor ) ) } else { spinnerItemView.setTextColor(ContextCompat.getColor(context, R.color.colorPrimaryText)) } return spinnerItemView } override fun isEnabled(position: Int) = position != 0 } 文件

spinner_item_layout

答案 7 :(得分:-1)

看起来默认颜色为:

#33000000