Is there way to set thicker font for Clock widget?

Is there way to set thicker font for Clock widget (including Home and Unlock screens) ?
Solved!
Go to Solution.

As I understand, not by default.
Check on Google Play store if you can find any clock widgets that may suit your needs.
 - Community Manager Sony Xperia Support Forum
If you're new to our forums make sure that you have read our Discussion guidelines.
If you want to get in touch with the local support team for your country please visit our contact page.

Similar Messages

  • Is there any way to enlarge the font for the panels in Bridge?

    Is there any way to enlarge the font for the panels in Bridge? Either CC or CS6?

    To change the default message font, use UIManager:   UIManager.put("OptionPane.messageFont",
          new Font("Lucida Console", Font.PLAIN, 12)); Per-instance, use HTML:   JOptionPane.showMessageDialog(
          "<html><font face='Lucida Console'>Your message here</font></html>");

  • HT5395 Is there a way to set a password for iMessage?

    Is there a way to set a password for iMessage on computer instead of it logging in automatically? Other people use my computer and I do not want them to have access to my imessages.
    Thanks

    Hi,
    It would be best if you set them up with their own Mac User account and changed your Login password.
    You could use the Sign Out button each time you closed the app.
    This would still show the Apple ID next time the app was started and if this is a common Apple ID  they could Sign in  again.
    You could open Keychain Access and remove the Auth Token but this would also be recreated when they started Messages and re-signed in the iMessages account.
    With the AIM, Jabber and Yahoo Accounts  it is possible not to enter the password when creating the account and Unticking the "Save this Password to the Keychain" each time you sign those accounts in.
    Much less possible with the iMessages account.
    7:59 pm      Wednesday; January 1, 2014
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • How can i set different font for different tabs/pages

    I want to set different fonts for different tabs/pages?
    is it possible to do the same? If yes how?
    I can change the fonts under tools>options>contents>advanced. but that changes global settings.
    tried some add ons too- but that too changes the global settings.
    some pages like tweetdeck do not display icons etc properly under custom fonts.
    when i check "allow pages to select their own font" tweetdeck shows up fine but a number of other pages show fonts that are too big or some non standard fonts.
    Is there a way where i can select site default fonts for some sites/tabs, and custom fonts for other sites/tabs?
    otherwise i have to open different sites in different browsers- say i use my custom fonts- which apply globally, and open tweetdeck etc in Internet Explorer or Chrome etc. if i can have all tabs in one window/browser, that would be great.

    It's not a built-in feature to override a page's styles on a tab-by-tab or site-by-site basis, but perhaps someone has created an add-on for this?
    It also is possible to create style rules for particular sites and to apply them using either a userContent.css file or the Stylish extension. The Greasemonkey extension allows you to use JavaScript on a site-by-site basis, which provides further opportunity for customization. But these would take time and lots of testing to develop and perfect (and perfection might not be possible)...
    Regarding size, does the zoom feature help solve that part? In case you aren't familiar with the keyboard and mouse shortcuts for quickly changing the zoom level on a page, this article might be useful: [[Font size and zoom - increase the size of web pages]].

  • A quick way to set different color for certain items in JList?

    is there a quick way of setting different color for certain items in JList?

    Either use HTML strings as the values in your JList (quickest, but may not be the most convenient, especially if your model isn't just text), or create your own ListCellRenderer (e.g. extend DefaultListCellRenderer).
    There is no such thing as "list.setItemForeground(int index, Color c)". You'll have to use one of the methods above.

  • Is there way to set tofirefox4 to always use https over http?

    is there way to set tofirefox4 to always use https over http? instead of getting the message if i want to go to https site instead of http site, is there a way so that firefox will notify me if there isn't a https site instead?

    *Force-TLS: https://addons.mozilla.org/firefox/addon/force-tls/
    *STS UI: https://addons.mozilla.org/firefox/addon/sts-ui/
    *HTTPS Everywhere: http://www.eff.org/https-everywhere

  • Is there anyway to set different folders for content in itunes?

    I get that you can set iTunes media file location.  I assume this will be the location for all media from itunes as well as ripped cd's ect.  Is there anyway to set the location for different media formats independantly.
    ie All my music is in My Music I mainly rip CD's and I would like these to go into My Music.  At the same time I don't want iTunes to mix in videos books ect ect.
    Thanks

    I just spent 1/2 hour looking for gapless, why the heck did they remove it? Stupid. I don't want the program deciding for me - just SO STUPID. Man iTunes 11 is such a disaster - didn't they have anyone who actually uses the program spend time with the features? They relocated all this basic stuff and it's now totally counterintuitive. I really hate it.

  • Setting bold font for nodes which are not leaf nodes

    In JTree, is it possible to set the font for nodes which are not leaf nodes. Can I do this without using custom renderer, or at the most using a DefaultTreeCellRenderer ?
    regards,
    nirvan

    In JTree, is it possible to set the font for nodes which are not leaf nodes. Can I do this without using custom renderer, or at the most using a DefaultTreeCellRenderer ?
    regards,
    nirvan

  • Is there a way to set an alert for every event in a single calendar?

    Hi all,
    Is there a way to globally set an event in just one of the calendars showing in iCal?
    For example, I have a "Birthday" Calendar with a bunch of birthday events.  I want to set the alert for all of them to, say, noon, without having to edit each and every one.
    Thanks!
       Greg

    To generally add an alarm to all events in a specific calendar you would need to program an Automator Workflow that passes all events of the calendar to an Applescript that adds the alarm.
    For your birthdays problem is a predefined solution iCal: If you enter the Birthdays on the cards in your Address Book, and enable the "Show Birthdays Calendar Flag", then you will receive automatic email notifications of upcoming birthdays.

  • Is there any easy & simple way to set specify font to all text

    Is there any way to set a specific font to all text of Swing controls (JLabel, JButton, etc)? And their font's style (bold, underscore...) and font's size still remain to their customized settings.
    Thanks in advance.
    null

    perhaps you're just after deriveFont()
    run this, you'll see both fonts the same
    import javax.swing.*;
    import java.awt.*;
    class Testing
      public void buildGUI()
        JLabel label_1 = new JLabel("Hello");
        JLabel label_2 = new JLabel("World");
        label_1.setFont(new Font("monospaced",Font.BOLD|Font.ITALIC,12));
        label_2.setFont(label_1.getFont());
        //label_1.setFont(label_1.getFont().deriveFont(36f));//<----------
        JFrame f = new JFrame();
        f.getContentPane().add(label_1,BorderLayout.NORTH);
        f.getContentPane().add(label_2,BorderLayout.SOUTH);
        f.pack();
        f.setLocationRelativeTo(null);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setVisible(true);
      public static void main(String[] args)
        SwingUtilities.invokeLater(new Runnable(){
          public void run(){
            new Testing().buildGUI();
    }now uncomment the indicated line, recompile/rerun
    you'll see the style remains, but the size increased

  • Is there any way to set a property for all existing Form Fields of a particular type (Che

    In versions of Acrobat prior to version 9, selecting a particular form tool (Textbox, Checkbox), etc. would only display Fields of that particular type in the Acrobat Designer (not LiveCycle).
    If one wanted to change a particular property of all check boxes for example, one would select the Checkbox Tool, Click Edit>Select All>Right Click one of the Checkboxes and Set the Property for all of the Form's Checkboxes.
    Selecting a particular form tool in the Acrobat (not Lifecycle) Designer in version 9 appears to no longer filter the display to that particular form field type. Is there any way to display only 1 particular form field type in or set a particular property for all existing Form Fields of a particular type (Check Box, Text Box, etc.) in Acrobat 9?

    Thanks for the tip..Am aware of this option and have used JavaScript to batch change properties in the past...
    Am looking for a way to replicate the interactive procedure available in previous versions.  Also, want a way to only display certain Form Field types (use this when analyzing forms which I didn't create).

  • Is there any way to set the default for *.doc document so that Pages opens them automatically?

    I have a number of Ms Word documents because I used to have Word for Mac before the last OS release.  Now, of course, when I double-click on them, I get a message saying that PowerPC isn't supported.
    Now Pages will open these files.  Is there any way to change the default for *.doc files so that a double-click will open them in Pages? 
    (Instead of me going to the trouble of finding out where they are actually located on the hard drive so that I can open pages and say - here, open this file--even though you didn't create it--)

    Click on a .doc file and type Cmnd I to open Get Info. In the Open with: menu select Pages, then click on Change All…
    Walt

  • Is there a way to set distinct toned for MMS messages? I have a tone set for texts and this is also the one that sounds when a pic or video is sent to me. I was wondering if there's a way to set a separate one? Thanks!

    Edit: I'm using ios6 on iPhone 4s. Thanks!

    Hi...
    The recomended way of setting up Applleds is to have one common one for "the Stores" (iTunes, App Store & Mac App store) so that all purchases are shared, then a seperate individual account for iCloud syncing EACH
    So for instance you'd have [email protected] for the stores and [email protected], [email protected] [email protected] & [email protected] for the individuals
    Thats' what I've done here for myself, mrs & 4 kids.
    Regards,
    Shawn

  • Is there a way to set a timer for your iPad to go off kind of like a sleep timer on the tv?

    I have the iPad Air 2. And I usually watch movies or something on it while I fall asleep so it doesn't shut down it just keeps playing all night and then the battery is drained.  I don't mind having to keep it plugged in but I thought if there was a way to set a timer that could work too   thanks!!
    Sarah Morris

    Try this. Go to the clock app. Select timer. Choose stop playing as your sound. Set the lenght of time to match your movie. Tap start. Your iPad will now turn off shortly after the movie is over.

  • Is there any way to set a timer for particular playlist?

    i would like to listen to a sleep playslist everynight without getting up to turn it on. is there any way to set it in advance?

    this is not the problem. i know how to open iTunes when it starts up and to schedule the computer to shut down. what i want to is at 8 pm close all applications except iTunes, put the display to sleep and at 9 pm start playing a sleep playlist. i have been told many times not to look at the computer an hour before bed and i so i want to avoid having to look at it to start my go to sleep playlist.
    i have looked at a number of programs but i don’t see one that does this yet.

Maybe you are looking for