Rahul Patel
Rahul Patel

Reputation: 3843

Button visibility/invisibility issue.

I am working android application that required login, Now I want After successfully login into my application, login button should be invisible and logout button should be visible, but getting errors.

I am using this function:

login.setVisibility(View.GONE);    &    logout.setVisibility(View.VISIBLE);  

Eclipse give me error in logcat like:

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.rahul.cheerfoolz/com.rahul.cheerfoolz.CheerfoolznativeActivity}: java.lang.NullPointerException.

Main.class

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

      session = new SessionID();
      Button login = (Button) findViewById(R.id.home_btn_feature_login);
      Button logout = (Button) findViewById(R.id.home_btn_feature_logout);

         int userID = SessionID.getUserID();

         System.out.println("value of the userID into the main page:====>"+userID);
         //  when user login then here I got the userID value

        if ((userID) > 0) {

            login.setVisibility(View.GONE);  //when Execute this give me error
            logout.setVisibility(View.VISIBLE);  //when Execute this give me error

        } else {

            login.setVisibility(View.VISIBLE); //when Execute this give me error
            logout.setVisibility(View.GONE); //when Execute this give me error

        }

    setContentView(R.layout.main);
    setHeader_home("");
    }

Main.xml

   <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="2"
        android:orientation="horizontal" >

   <!-- Here Login Button  -->

        <Button
            android:id="@+id/home_btn_feature_login"
            style="@style/HomeButton"
            android:drawableTop="@drawable/login_button"
            android:onClick="onClickFeature"
            android:text="@string/title_feature_login" />

   <!-- Here Logout Button  -->

        <Button
            android:id="@+id/home_btn_feature_logout"
            style="@style/HomeButton"
            android:drawableTop="@drawable/logout_button"
            android:onClick="onClickFeature"
            android:text="@string/title_feature_logout" />

        <Button
            android:id="@+id/home_btn_feature2"
            style="@style/HomeButton"
            android:drawableTop="@drawable/register_button"
            android:onClick="onClickFeature"
            android:text="@string/title_feature_register" />
    </LinearLayout>

Upvotes: 0

Views: 601

Answers (2)

Samir Mangroliya
Samir Mangroliya

Reputation: 40426

You have to add setContentView(R.layout.main) after super.onCreate(savedInstanceState); or before Accessing Any View from XML Layout File.Then your Button get refrenced from xml.and in code can't get Button refrence from main.xml .so NullPointer Exception.

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);<<<<<<<<<<<<<<ADD THIS LINE


    session = new SessionID();
    Button login = (Button) findViewById(R.id.home_btn_feature_login);
    Button logout = (Button) findViewById(R.id.home_btn_feature_logout);

Upvotes: 4

Animesh Sinha
Animesh Sinha

Reputation: 1045

Add this setContentView(R.layout.main); after super.onCreate(savedInstanceState);

Upvotes: 4

Related Questions