Closed
Bug 1035642
(widget)
Opened 11 years ago
Closed 11 years ago
Provide a simple launcher widget for Firefox and the Search Activity
Categories
(Firefox for Android Graveyard :: General, defect)
Tracking
(relnote-firefox 35+)
VERIFIED
FIXED
Firefox 34
Tracking | Status | |
---|---|---|
relnote-firefox | --- | 35+ |
People
(Reporter: wesj, Assigned: wesj)
References
Details
(Keywords: feature)
Attachments
(5 files, 3 obsolete files)
As a first pass, lets just make a widget that launches Fennec or the search activity. We can tie its creation to the existence of the search activity (for now?).
Assignee | ||
Comment 1•11 years ago
|
||
Simple widget. There are quite a few images in here that I made myself or stole from other parts of the tree. It would be nice if UX could get us some betters ones or ones for every resolution we support.
Included in here are
1.) A logo image
2.) A new + button for the new tab option (the only one we have is for menus and is to large)
3.) A white background with a short dropshadow on it.
4.) A highlight state for the same buttons
5.) A preview image to show in the widget picker dialog/when dragging a new widget onto your home screen.
Build at:
http://people.mozilla.com/~wjohnston/widget.apk
I'll post a few screenshots too.
Attachment #8452148 -
Flags: review?(mark.finkle)
Assignee | ||
Comment 2•11 years ago
|
||
Flags: needinfo?(ywang)
Flags: needinfo?(ibarlow)
Flags: needinfo?(alam)
Assignee | ||
Comment 3•11 years ago
|
||
Comment 4•11 years ago
|
||
I'll let Anthony nitpick over pixels, but I noticed that the preview in the widgets tray doesn't have any text in it. Can we fix that?
Flags: needinfo?(ibarlow)
Assignee | ||
Comment 5•11 years ago
|
||
Yeah, I yanked it because it wouldn't be localized, but we can add it back. It looks like most Google widgets just don't care about that either.
Comment 6•11 years ago
|
||
Ok cool. Also, can New Tab open about:home, instead of about:blank?
Comment 7•11 years ago
|
||
Comment on attachment 8452148 [details] [diff] [review]
Patch v1
>diff --git a/configure.in b/configure.in
>-MOZ_ANDROID_SEARCH_ACTIVITY=
>+MOZ_ANDROID_SEARCH_ACTIVITY=1
Not ready to land, right? and shouldn't we do this in confvars anyway?
>diff --git a/mobile/android/base/AndroidManifest.xml.in b/mobile/android/base/AndroidManifest.xml.in
>+#ifdef MOZ_ANDROID_SEARCH_ACTIVITY
>+ <!-- Basic launcher widget. -->
>+ <receiver android:name="org.mozilla.gecko.LaunchWidget" >
This might be too generally named. Is this the SearchWidget?
>diff --git a/mobile/android/base/moz.build b/mobile/android/base/moz.build
>+ 'LaunchWidget.java',
Naming TBD (Launch or Search or something else)
>diff --git a/mobile/android/base/resources/drawable-hdpi/launch_widget_preview.png b/mobile/android/base/resources/drawable-hdpi/launch_widget_preview.png
This image seems a little big. Make sure we pngcrush it or pngquant it.
>diff --git a/mobile/android/base/resources/drawable-xhdpi/firefox_logo.png b/mobile/android/base/resources/drawable-xhdpi/firefox_logo.png
Same
>diff --git a/mobile/android/base/resources/drawable/widget_button.xml b/mobile/android/base/resources/drawable/widget_button.xml
Careful with the general naming
>diff --git a/mobile/android/base/resources/layout/launch_widget.xml b/mobile/android/base/resources/layout/launch_widget.xml
Same
Attachment #8452148 -
Flags: review?(mark.finkle) → feedback+
Assignee | ||
Updated•11 years ago
|
Blocks: fennec-lockscreen
Assignee | ||
Comment 8•11 years ago
|
||
Pretty dumb. Pretty simple. I removed the search widget dependency (for now?) Instead we just use a slightly different layout without the search button if its not enabled. I'll grab some screenshots of both.
Attachment #8452148 -
Attachment is obsolete: true
Attachment #8462114 -
Flags: review?(mark.finkle)
Assignee | ||
Comment 9•11 years ago
|
||
Attachment #8452150 -
Attachment is obsolete: true
Assignee | ||
Comment 10•11 years ago
|
||
Making the preview change based on whether search is installed or not means dynamically bundling some different resources. We could, but I get the feeling this non-search widget isn't as great as I'd hoped anyway. Maybe I should turn that off. For now, everyone gets the same initial previews.
Assignee | ||
Comment 11•11 years ago
|
||
Sorry I convinced myself yesterday that having a non-search version of this wasn't that helpful. This removes that (and moves everything into the search folder) Build at:
http://people.mozilla.org/~wjohnston/widget.apk
Attachment #8462114 -
Attachment is obsolete: true
Attachment #8462114 -
Flags: review?(mark.finkle)
Attachment #8462855 -
Flags: review?(mark.finkle)
Flags: needinfo?(ywang)
Flags: needinfo?(alam)
Comment 12•11 years ago
|
||
Comment on attachment 8462855 [details] [diff] [review]
Patch v2
>diff --git a/mobile/android/search/java/org/mozilla/search/SearchWidget.java b/mobile/android/search/java/org/mozilla/search/SearchWidget.java
>+ } else if (intent.getAction().equals(ACTION_LAUNCH_SEARCH)) {
>+ redirect = buildRedirectIntent(Intent.ACTION_VIEW,
>+ "org.mozilla.search.MainActivity",
Can we make a constant for this string too?
>+ // Utility for adding a pending intent to be fired when a View is clicked.
>+ private void addClickIntent(final Context context, final RemoteViews views, final int viewId, final String action) {
>+ final Intent intent = new Intent(context, SearchWidget.class);
>+ intent.setAction(action);
>+ intent.setData(Uri.parse("about:home"));
You test APK is still going to about:blank. Is it just out of date? Sometimes when Fennec is already running and I press "New Tab" it switches to Fennec, but does not load a new page. Worth debugging, or maybe an out of date APK.
>diff --git a/mobile/android/search/res/layout/search_widget.xml b/mobile/android/search/res/layout/search_widget.xml
>+<!-- A homescreen widget for launching Fennec or the search activity. We can't use styles in here
s/Fennec/the browser
>+ <!-- The logo. adjustViewBounds is required for the buttons above to stretch underneith the logo. -->
nit: underneath
r+ with nits
Attachment #8462855 -
Flags: review?(mark.finkle) → review+
Assignee | ||
Comment 13•11 years ago
|
||
Landed the branding resources:
https://hg.mozilla.org/integration/fx-team/rev/9050c556c556
The rest of this needs to land in github.
Whiteboard: [leave-open]
Comment 14•11 years ago
|
||
(In reply to Wesley Johnston (:wesj) from comment #13)
> Landed the branding resources:
> https://hg.mozilla.org/integration/fx-team/rev/9050c556c556
>
> The rest of this needs to land in github.
To clarify, yes, you'll want to make a PR with the required changes, but then you should use `grunt export
Comment 15•11 years ago
|
||
Oops, hit the enter key by mistake...
(In reply to :Margaret Leibovic from comment #14)
> (In reply to Wesley Johnston (:wesj) from comment #13)
> > Landed the branding resources:
> > https://hg.mozilla.org/integration/fx-team/rev/9050c556c556
> >
> > The rest of this needs to land in github.
>
> To clarify, yes, you'll want to make a PR with the required changes, but
> then you should use `grunt export`
... to create a patch to land on fx-team.
Comment 16•11 years ago
|
||
Merged into FirefoxSearch:
https://github.com/ericedens/FirefoxSearch/commit/61a78940142702fe7acffb0a709cb16b9a3796ae
wesj, I'll let you land this on fx-team.
Comment 17•11 years ago
|
||
Comment 18•11 years ago
|
||
I had to remove the text_color_primary declaration because I was getting a duplicate declaration error when trying to package as part of Fennec. I'll file a separate search activity bug to figure out how we can fix this in the github repo.
https://hg.mozilla.org/integration/fx-team/rev/b4771f701601
Assignee: nobody → wjohnston
Whiteboard: [leave-open]
Comment 19•11 years ago
|
||
Attaching a WIP of the first iteration for this "simple widget".
I imagine the 3 functions (from left to right) to be opens Firefox, starts search activity, and opens a new tab. That being said, I've given each the same size in terms of hit areas but given the build logo a backdrop since it also serves another purpose which is branding.
Pretty basic for now, but I just wanted to post a WIP. Maybe I could get some feedback on which functionality is meant to be the primary and I can try to rejig the UI to create more of a hierarchy (currently they're all on the same level in terms of importance).
Comment 20•11 years ago
|
||
(In reply to Anthony Lam (:antlam) from comment #19)
> Created attachment 8465031 [details]
> Widget.png
>
> Attaching a WIP of the first iteration for this "simple widget".
>
> I imagine the 3 functions (from left to right) to be opens Firefox, starts
> search activity, and opens a new tab. That being said, I've given each the
> same size in terms of hit areas but given the build logo a backdrop since it
> also serves another purpose which is branding.
>
> Pretty basic for now, but I just wanted to post a WIP. Maybe I could get
> some feedback on which functionality is meant to be the primary and I can
> try to rejig the UI to create more of a hierarchy (currently they're all on
> the same level in terms of importance).
Since the patch in this bug already landed, I filed bug 1046419 as a follow-up to work on refining the design.
Blocks: fennec-search-activity
Comment 21•11 years ago
|
||
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 34
Updated•11 years ago
|
Comment 22•11 years ago
|
||
Is it expected that tapping the branding logo also opens a new tab?
Alias: widget
Status: RESOLVED → VERIFIED
Comment 23•11 years ago
|
||
(In reply to Aaron Train [:aaronmt] from comment #22)
> Is it expected that tapping the branding logo also opens a new tab?
In my head, I would think tapping the logo would open up Firefox (just like tapping on the app icon would do in the app drawer)
Comment 24•11 years ago
|
||
(In reply to Anthony Lam (:antlam) from comment #23)
> (In reply to Aaron Train [:aaronmt] from comment #22)
> > Is it expected that tapping the branding logo also opens a new tab?
>
> In my head, I would think tapping the logo would open up Firefox (just like
> tapping on the app icon would do in the app drawer)
Thats reads to me then that the current behaviour is unexpected. I'll open a bug.
Comment 26•10 years ago
|
||
For record, Android 5.0 removed lock-screen widget functionality.
Updated•10 years ago
|
relnote-firefox:
--- → 35+
Updated•4 years ago
|
Product: Firefox for Android → Firefox for Android Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•