Skip to content

Commit

Permalink
Replace hard coded # with string resource
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavpandey committed Jul 5, 2023
1 parent 564b703 commit 98dbdda
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="@dimen/ads_picker_font_size_medium"
android:text="#"
tools:ignore="HardcodedText,TextViewEdits" />
android:text="@string/ads_unit_hash" />

<com.pranavpandey.android.dynamic.support.widget.DynamicEditText
android:id="@+id/ads_color_picker_edit"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="@dimen/ads_picker_font_size_medium"
android:text="#"
tools:ignore="HardcodedText,TextViewEdits" />
android:text="@string/ads_unit_hash" />

<com.pranavpandey.android.dynamic.support.widget.DynamicEditText
android:id="@+id/ads_color_picker_edit"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
<string name="ads_cancel">@android:string/cancel</string>
<string name="ads_unit_percent">%</string>
<string name="ads_unit_pixel">px</string>
<string name="ads_unit_hash">#</string>

<!-- Locales -->
<string name="ads_locale_system">@string/ads_language_system</string>
Expand Down

0 comments on commit 98dbdda

Please sign in to comment.