Sunday, September 15, 2013

SCREEN ORIENTATION

SCREEN ORIENTATION

SOURCE CODE [main.xml] is

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:orientation="vertical"
android:layout_width="fill_parent"
                android:layout_height="fill_parent">
                
                <TextView android:layout_width="fill_parent"
                                android:layout_height="wrap_content"
android:text="@string/hello" />

                <Button android:text="Set PORTRAIT"
android:id="@+id/portrait"
                                android:layout_width="fill_parent"
android:layout_height="wrap_content">
                </Button>

                <Button android:text="Set LANDSCAPE"
android:id="@+id/landscape"
                                android:layout_width="fill_parent"
android:layout_height="wrap_content">
</Button>

</LinearLayout>



SOURCE CODE [ScreenOrientationExample.java] is


package com.ScreenOrientationExample;

import android.app.Activity;
import android.content.pm.ActivityInfo;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class ScreenOrientationExample extends Activity
{
               
                int o;

                public void onCreate(Bundle savedInstanceState)
{

                                super.onCreate(savedInstanceState);
                                setContentView(R.layout.main);

                                Button buttonSetPortrait = (Button) findViewById(R.id.portrait);
                                Button buttonSetLandscape = (Button) findViewById(R.id.landscape);

                                buttonSetPortrait.setOnClickListener(new Button.OnClickListener()
{
                                                public void onClick(View arg0)
{
                                                                o = ActivityInfo.SCREEN_ORIENTATION_PORTRAIT;
                                                                setRequestedOrientation(o);
                                                }
                                });

                                buttonSetLandscape.setOnClickListener(new Button.OnClickListener()
{
                                                public void onClick(View arg0)
{
                                                                o = ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE;
                                                                setRequestedOrientation(o);
                                                }
                                });

                }
}

The OUTPUT will be

https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgQ1QIH3EQz8iQWGlIxfVsS17kvsDoRC_BFxNRmvJxneyZQOaR_yLnDTOc-jySgwSE7duJYbwpDZQ2fbaWTh8Rmekyxqq50MyocV1QB5g2rvakYlfLUzRq5kvQeO5I8oj4V_VAEpbb7oxM/

https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEizv0FJVtaN3OpzF2RY9OWcrq8yxY0XhoW1byWdpOIhAbjmuURkVPEzPvKGHDK-Jd79x72DZpAzhvqRlEeEsObdu6EepYrm2escJBtSKwqhXUtIeiwaBONdqOGqBNWRrLoP6-QWMnKn1Us/

    No comments:

    Post a Comment