mozilla

Mozilla Nederland Logo De vertaler van de Mozilla-producten.

Mozilla begins baking new patch to kill tracking cookies - ZDNet

Google nieuws - ti, 26/03/2013 - 09:14

RedOrbit

Mozilla begins baking new patch to kill tracking cookies
ZDNet
Mozilla begins baking new patch to kill tracking cookies. Summary: A new patch for Firefox is now being tested by Mozilla and could see third party cookies banned from being installed if a user hasn't directly visited the cookie owner. Michael Lee. By ...
Ad Industry Rails Against Firefox Cookie Tracking PatchRedOrbit
Ad industry threatens Firefox users with more ads if Mozilla moves on tracking ...TechHive
The IAB's Cookie Stance Riles PublishersDigiday
MediaPost Communications
alle 11 nieuwsartikelen »
Categorieën: Mozilla-nl planet

Sriram Ramasubramanian: View Reduction

Mozilla.org - ti, 26/03/2013 - 06:41

“So! Many! Views!” — that’s exactly what I felt when we started the process of optimizing Firefox for Android. Compound Drawables was pure magic. It reduced a lot of views in the home page. But we wanted to see where all it could be used. The custom menu was a good choice. To stand out from other menus, but still feel like Android menu, we added the images to the menu. This required re-writing the entire menu management ourselves. Also, some menu items are checkable and some others can have a sub menu. We added an indicator on the right for the same. The final layout had no less than 8 views to manage the image, text and the indicator along with the variable padding in between them.

Left: Original complex layout with 8 views; Right: One single TextView.

How do we reduce the views in this menu? This menu is going to exist for the entire life time of the app (at this point of writing, even though they use a list view, the individual rows aren’t cleared every time the menu is closed). To start optimizing, let’s look at how the original menu layout was.

<LinearLayout> <!-- left-most padding --> <View android:layout_width="10dp"/> <!-- icon --> <ImageView /> <!-- menu item name --> <TextView /> <!-- right Indicator --> <FrameLayout> <!-- tick --> <CheckBox /> <!-- more indicator --> <ImageView /> </FrameLayout> <!-- right-most padding --> <View android:layout_width="10dp"/> </LinearLayout>

The low hanging fruit here is to combine the ImageView for the icon with the TextView. That reduces one of the two views. The left and right most padding are interesting cases. The TextView by itself cannot have a standard margin. This would push the text more inside, if the icon or the right indicator is present, but will look right without them. But, that’s not the intended design. The parent LinearLayout can have a padding. However, this layout file actually had a <merge/> tag as the parent, as the layout could be inflated into any ViewGroup on demand. Now, since the left image is now made a compound drawable, the padding can be merged with the TextView. We are left with the right indicator (3 views) and an empty view for padding.

The interesting thing with compound drawables is that they support states. The state of the TextView is duplicated to the compound drawables too. If there is a way to combine the CheckBox and the ImageView as a single drawable, the entire right indicator could be made a compound drawable. How do we do that? The easiest way is to have custom states. A typical state list for the right indicator would look like:

<selector> <!-- more indicator --> <item app:state_more="true" android:drawable="@drawable/more_indicator"/> <!-- checked state --> <item app:state_more="false" android:state_checkable="true" android:state_checked="true" android:drawable="@drawable/check_mark"/> <!-- unchecked state --> <item app:state_more="false" android:state_checkable="true" android:state_checked="false" android:drawable="@drawable/check_box"/> <!-- default state --> <item android:drawable="@android:color/transparent"/> </selector>

The right side of the TextView is shrunk to a single image with multiple states. This can be the android:drawableRight of the text. So, how many views do we have for the menu item?

<TextView android:drawableLeft="@drawable/_assigned_by_code_" android:drawableRight="@drawable/_right_indicator_selector_" android:paddingLeft="10dp" android:paddingRight="10dp"/>

And that’s how we optimize Firefox on Android! One view at a time!


Categorieën: Mozilla-nl planet

Mike Ratcliffe: Moving your Contacts and Calendar Away from Google

Mozilla.org - ti, 26/03/2013 - 02:37
For the past few years I have used Google Contacts to store my contacts and Google Calendar to store my calendars. These services really are excellent, particularly because they allow me to keep my data synchronized between my Android phone and numerous instances of Thunderbird on PCs and Laptops. Unfortunately, I have had issues with [...]
Categorieën: Mozilla-nl planet

Imprisioned Contributor, 1 Year Later

Mitchell Baker - snein, 17/03/2013 - 07:44

Yesterday makes it a full  year since Creative Commons and Mozilla contributor Bassel Khartibil was imprisoned by the Syrian regime.  Last July a public campaign was launched, and Mozilla participated .

This public  campaign to #freebassel  may have played a significant role in getting Bassel moved from a military intelligence to a civilian prison with visitation rights.

We continue to urge support for the #freebassel campaign by visiting the website, tweeting about Bassel’s case (#freebassel), or attending an event in his honor.

Categorieën: Mozilla-nl planet

to, 01/01/1970 - 01:00