Skip to content

Commit

Permalink
替换掉固定颜色值的写法。
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony committed Oct 19, 2019
1 parent 99d352e commit b4aee1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/res/layout/place_item.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
android:id="@+id/placeName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000"
android:textColor="?android:attr/textColorPrimary"
android:textSize="20sp"/>

<TextView
android:id="@+id/placeAddress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:textColor="#888"
android:textColor="?android:attr/textColorSecondary"
android:textSize="14sp"/>

</LinearLayout>
Expand Down

0 comments on commit b4aee1c

Please sign in to comment.