2013-12-24 4 views
0

나는 내 구글지도의 ontop을 배치 버튼이 있지만 텍스트는 모두 같이 회색으로 표시됩니다버튼 텍스트는 안드로이드 구글지도에서 회색으로 표시됩니다

enter image description here

어쨌든 텍스트를 만드는 방법이 있나요 회색으로 표시되지 않으므로 읽기가 쉽습니다.

내 XML은 다음과 같습니다

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    tools:context=".MainActivity" > 

    <fragment 
     android:id="@+id/map" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     class="com.google.android.gms.maps.MapFragment" /> 

    <Button 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:text="Navigate to Brewery" 
     android:id="@+id/button2" 
     android:textColor="@color/orange" 
     android:textStyle="bold" 
     android:onClick="getMap" 
     /> 


</RelativeLayout> 
+0

나에게 오렌지 것 같다 사용해보십시오. 배경보다 진한 주황색이지만 주황색. # D38100은 분명 회색이 아닙니다. – gian1200

답변

0

안드로이드 : 텍스트 색상 = "@ 색상/오렌지"

흰색 대신

관련 문제