Add this android:screenOrientation="portrait" in your manifest file where you declare your activity like this
<activity android:name=".yourActivity"
    ....
    android:screenOrientation="portrait" />
If you want to do using java code try
setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); 
before you call setContentView method for your activity in onCreate().
Hope this help and easily understandable for all...