Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Issue 23314003: Add support for datalist to text input element on Android (Closed)

Created:
7 years, 4 months ago by keishi
Modified:
7 years, 1 month ago
CC:
chromium-reviews, joi+watch-content_chromium.org, darin-cc_chromium.org, jam
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Visibility:
Public.

Description

Add support for datalist to text input element on Android We want to have a darker color divider between the datalist suggestions and autofill suggestions. The ListView instance is constructed inside ListPopupWindow so we can't override ListView.drawDivider(), so we draw the divider inside the list item view. BUG=242455 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=234194 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=234378

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : Created custom drawable #

Total comments: 23

Patch Set 4 : Calculate 44dp+1px #

Patch Set 5 : Rebased #

Total comments: 14

Patch Set 6 : Fixed nits #

Patch Set 7 : Removed change to runtime_features.cc #

Patch Set 8 : Added R.java change #

Patch Set 9 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+136 lines, -30 lines) Patch
M ui/android/java/res/layout/autofill_text.xml View 1 2 3 4 5 1 chunk +23 lines, -25 lines 0 comments Download
M ui/android/java/res/values/colors.xml View 1 chunk +2 lines, -0 lines 0 comments Download
M ui/android/java/res/values/dimens.xml View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
M ui/android/java/resource_map/org/chromium/ui/R.java View 1 2 3 4 5 6 7 1 chunk +6 lines, -0 lines 0 comments Download
A ui/android/java/src/org/chromium/ui/autofill/AutofillDividerDrawable.java View 1 2 3 4 5 1 chunk +55 lines, -0 lines 0 comments Download
M ui/android/java/src/org/chromium/ui/autofill/AutofillListAdapter.java View 1 2 3 4 5 6 7 8 2 chunks +32 lines, -2 lines 0 comments Download
M ui/android/java/src/org/chromium/ui/autofill/AutofillPopup.java View 1 2 3 6 chunks +16 lines, -3 lines 0 comments Download

Messages

Total messages: 29 (0 generated)
keishi
7 years, 4 months ago (2013-08-19 13:56:45 UTC) #1
keishi
Here is a screenshot of the patch in action. The "Tom"s are datalist suggestions and ...
7 years, 3 months ago (2013-08-30 05:03:17 UTC) #2
keishi
newt@, could you take a look at this too since it is UI related? I've ...
7 years, 3 months ago (2013-09-06 22:51:31 UTC) #3
newt (away)
datalist support everywhere! :) Here's an approach that should work pretty well: - Create a ...
7 years, 3 months ago (2013-09-06 23:40:32 UTC) #4
keishi
On 2013/09/06 23:40:32, newt wrote: > datalist support everywhere! :) > > Here's an approach ...
7 years, 3 months ago (2013-09-07 05:11:32 UTC) #5
newt (away)
https://codereview.chromium.org/23314003/diff/9001/ui/android/java/res/layout/autofill_text.xml File ui/android/java/res/layout/autofill_text.xml (right): https://codereview.chromium.org/23314003/diff/9001/ui/android/java/res/layout/autofill_text.xml#newcode14 ui/android/java/res/layout/autofill_text.xml:14: <LinearLayout android:id="@+id/autofill_menu_text" these two linearlayouts can be combined into ...
7 years, 3 months ago (2013-09-09 20:20:41 UTC) #6
keishi
https://codereview.chromium.org/23314003/diff/9001/ui/android/java/res/layout/autofill_text.xml File ui/android/java/res/layout/autofill_text.xml (right): https://codereview.chromium.org/23314003/diff/9001/ui/android/java/res/layout/autofill_text.xml#newcode14 ui/android/java/res/layout/autofill_text.xml:14: <LinearLayout android:id="@+id/autofill_menu_text" On 2013/09/09 20:20:42, newt wrote: > these ...
7 years, 3 months ago (2013-09-10 09:19:56 UTC) #7
newt (away)
https://codereview.chromium.org/23314003/diff/9001/ui/android/java/res/layout/autofill_text.xml File ui/android/java/res/layout/autofill_text.xml (right): https://codereview.chromium.org/23314003/diff/9001/ui/android/java/res/layout/autofill_text.xml#newcode10 ui/android/java/res/layout/autofill_text.xml:10: android:layout_width="fill_parent" "fill_parent" -> "match_parent" everywhere https://codereview.chromium.org/23314003/diff/9001/ui/android/java/res/layout/autofill_text.xml#newcode14 ui/android/java/res/layout/autofill_text.xml:14: <LinearLayout android:id="@+id/autofill_menu_text" ...
7 years, 3 months ago (2013-09-10 17:45:10 UTC) #8
keishi
https://codereview.chromium.org/23314003/diff/9001/ui/android/java/res/layout/autofill_text.xml File ui/android/java/res/layout/autofill_text.xml (right): https://codereview.chromium.org/23314003/diff/9001/ui/android/java/res/layout/autofill_text.xml#newcode14 ui/android/java/res/layout/autofill_text.xml:14: <LinearLayout android:id="@+id/autofill_menu_text" On 2013/09/10 17:45:10, newt wrote: > On ...
7 years, 3 months ago (2013-09-19 11:53:04 UTC) #9
keishi
It has been a while. Could you please take a look again. Thanks.
7 years, 2 months ago (2013-10-01 14:19:16 UTC) #10
newt (away)
a few nits, then lgtm. sorry I lost track of this. thanks! https://codereview.chromium.org/23314003/diff/24001/ui/android/java/res/layout/autofill_text.xml File ui/android/java/res/layout/autofill_text.xml ...
7 years, 2 months ago (2013-10-03 16:34:51 UTC) #11
keishi
Thanks! https://codereview.chromium.org/23314003/diff/24001/ui/android/java/res/layout/autofill_text.xml File ui/android/java/res/layout/autofill_text.xml (right): https://codereview.chromium.org/23314003/diff/24001/ui/android/java/res/layout/autofill_text.xml#newcode10 ui/android/java/res/layout/autofill_text.xml:10: android:layout_width="match_parent" On 2013/10/03 16:34:51, newt wrote: > since ...
7 years, 2 months ago (2013-10-04 05:52:28 UTC) #12
Miguel Garcia
lgtm with some nits https://codereview.chromium.org/23314003/diff/24001/ui/android/java/src/org/chromium/ui/autofill/AutofillDividerDrawable.java File ui/android/java/src/org/chromium/ui/autofill/AutofillDividerDrawable.java (right): https://codereview.chromium.org/23314003/diff/24001/ui/android/java/src/org/chromium/ui/autofill/AutofillDividerDrawable.java#newcode5 ui/android/java/src/org/chromium/ui/autofill/AutofillDividerDrawable.java:5: nit: extra blank line https://codereview.chromium.org/23314003/diff/24001/ui/android/java/src/org/chromium/ui/autofill/AutofillDividerDrawable.java#newcode53 ...
7 years, 1 month ago (2013-11-06 17:33:56 UTC) #13
keishi
Thanks https://codereview.chromium.org/23314003/diff/24001/ui/android/java/src/org/chromium/ui/autofill/AutofillDividerDrawable.java File ui/android/java/src/org/chromium/ui/autofill/AutofillDividerDrawable.java (right): https://codereview.chromium.org/23314003/diff/24001/ui/android/java/src/org/chromium/ui/autofill/AutofillDividerDrawable.java#newcode5 ui/android/java/src/org/chromium/ui/autofill/AutofillDividerDrawable.java:5: On 2013/11/06 17:33:56, Miguel Garcia wrote: > nit: ...
7 years, 1 month ago (2013-11-07 04:19:17 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/23314003/45001
7 years, 1 month ago (2013-11-07 04:22:22 UTC) #15
commit-bot: I haz the power
Retried try job too often on chromium_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=chromium_presubmit&number=34938
7 years, 1 month ago (2013-11-07 04:44:25 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/23314003/155001
7 years, 1 month ago (2013-11-07 08:13:03 UTC) #17
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 1 month ago (2013-11-07 09:15:17 UTC) #18
keishi
+primiano could you review the change to R.java? Thanks.
7 years, 1 month ago (2013-11-07 11:23:11 UTC) #19
Primiano Tucci (use gerrit)
LGTM. Thanks for the cc.
7 years, 1 month ago (2013-11-07 18:09:00 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/23314003/375001
7 years, 1 month ago (2013-11-07 18:10:49 UTC) #21
commit-bot: I haz the power
The commit queue went berserk retrying too often for a seemingly flaky test on builder ...
7 years, 1 month ago (2013-11-08 01:57:58 UTC) #22
keishi
On 2013/11/08 01:57:58, I haz the power (commit-bot) wrote: > The commit queue went berserk ...
7 years, 1 month ago (2013-11-08 08:08:17 UTC) #23
newt (away)
On 2013/11/08 08:08:17, keishi1 wrote: > On 2013/11/08 01:57:58, I haz the power (commit-bot) wrote: ...
7 years, 1 month ago (2013-11-08 17:18:56 UTC) #24
keishi
On 2013/11/08 17:18:56, newt wrote: > On 2013/11/08 08:08:17, keishi1 wrote: > > On 2013/11/08 ...
7 years, 1 month ago (2013-11-11 01:31:27 UTC) #25
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/23314003/765001
7 years, 1 month ago (2013-11-11 02:00:07 UTC) #26
commit-bot: I haz the power
Change committed as 234194
7 years, 1 month ago (2013-11-11 04:30:32 UTC) #27
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/keishi@chromium.org/23314003/765001
7 years, 1 month ago (2013-11-12 02:08:52 UTC) #28
commit-bot: I haz the power
7 years, 1 month ago (2013-11-12 02:18:52 UTC) #29
Message was sent while issue was closed.
Change committed as 234378

Powered by Google App Engine
This is Rietveld 408576698