Luca Zanini
  • Home
    • Astronomy
    • Android
    • Java
    • Lotus
  • About me
  • Lotus designer client slow

    Sep 10, 2012

    —

    by

    Luca Zanini
    in Lotus

    If your lotus designer client is slow opening design elements, try to exclude the lotus directory from the antivirus scan in real time.

    Read more: Lotus designer client slow

  • Swipe views

    Sep 9, 2012

    —

    by

    Luca Zanini
    in Android

    In a previous post I implemented a layout with 2 tabs using an action bar and fragments; the disadvantage of this layout is that dragging horizzontally the views in a similar way to Google Play would be very natural for the user. In Horizontal View Swiping with ViewPager you can see how to get this…

    Read more: Swipe views

  • Basic configuration of Spring Security 3 and MySQL

    Sep 2, 2012

    —

    by

    Luca Zanini
    in Java

    In this post I explain how to implement Spring Security in a web application, as I did in a previous post but the authenticated user’s username and password are not saved to a file .xml but in a MySQL database. As in the previous post, I configure one user only trying to access index.html and…

    Read more: Basic configuration of Spring Security 3 and MySQL

  • Quickly switch between the code for the emulator to the code for the real device

    Aug 26, 2012

    —

    by

    Luca Zanini
    in Android

    In a previous post I explained the differences between the code for the emulator and the code for the real device, but the switch from one to another and vice versa is very cumbersome.In this post I propose a way to switch quickly from one situation to another with few changes.The specific code for the…

    Read more: Quickly switch between the code for the emulator to the code for the real device

  • Basic configuration of Spring Security 3

    Aug 21, 2012

    —

    by

    Luca Zanini
    in Java

    In this post I write about a basic configuration of Spring Security 3, the Spring framework for authentication and authorization of the users. In this example there is only one user trying to access to index.html and he is redirected to the standard login page for authentication. In this project I use and configure maven…

    Read more: Basic configuration of Spring Security 3

  • Android XML Editor cannot process this input

    Jul 28, 2012

    —

    by

    Luca Zanini
    in Android

    If you open an XML document in Eclipse and you get the error “Android XML Editor can not process this input”, you can solve it by opening the preferences (Window menu -> Preferences) and select General -> Editors -> File Associations, highlight *.xml , and choose XM Editor as default editor, and then no more…

    Read more: Android XML Editor cannot process this input

  • gimp-android-xdpi

    Jul 26, 2012

    —

    by

    Luca Zanini
    in Android

    I found this very useful plugin for gimp, called gimp-android-xdpi, that allows you to easily create images with the desired dimensions in the directories drawable-ldpi, drawable-mdpi, drawable-hdpi and drawable-xhdpi of an Android project, following the guidelines explained on Icon Design Guidelines and links therein.

    Read more: gimp-android-xdpi

  • The differences between the code for the emulator and the code for a real device

    Jul 6, 2012

    —

    by

    Luca Zanini
    in Android

    The Android developers can use Sensor Simulator to test their applications, in particular when they use sensors such as accelerometer or compass. In this post I explain the differences in the code for an activity that runs on the emulator or a real device, and I don’t discuss how to install or launch the emulator,…

    Read more: The differences between the code for the emulator and the code for a real device

  • Customizing the labels of an ActionBar

    Jun 16, 2012

    —

    by

    Luca Zanini
    in Android

    In the post Tab Layout in Android with ActionBar and Fragment I wrote an example of using an ActionBar whose labels are shown in uppercase even if you use the statement: actionBar.newTab (). setText (“my string”); where “my string” is lowercase. In this article I show how to customize the labels in lowercase but it…

    Read more: Customizing the labels of an ActionBar

  • Preventing the rotation of the screen in Android

    Jun 10, 2012

    —

    by

    Luca Zanini
    in Android

    To prevent rotation of the screen in Android you can use one of two statements:Android: screenOrientation = “portrait”orAndroid: screenOrientation = “landscape”being included in the activity tag in the file AndroidManifest.xml.

    Read more: Preventing the rotation of the screen in Android

←Previous Page Next Page→