Here's my code.

public class Business extends Activity implements OnClickListener
{           
private Button mHorizontalButton;
private Button mVerticalButton;
/** Called when the activity is first created. */
public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    mHorizontalButton = (Button) findViewById(R.id.horizontal_button);
    mVerticalButton = (Button) findViewById(R.id.vertical_button);
    mHorizontalButton.setOnClickListener(this);
    mVerticalButton.setOnClickListener(this);
}
public void onClick(View v) 
{
    switch (v.getId())
    {
        case R.id.horizontal_button:
            setContentView(R.layout.horizontal);
            break;
        case R.id.vertical_button:
            setContentView(R.layout.main);
            break;      
    }
}
}

This is main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="This layout is vertical." />
<Button
    android:text="Click for a horizontal layout"
    android:id="@+id/horizontal_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
</LinearLayout>

And this is horizontal.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="This layout is horizontal." />
<Button
    android:text="Click for a vertical layout"
    android:id="@+id/vertical_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
</LinearLayout>

Actually this example is taken from Merrifield Mew book. It is supposed, that by clicking on button I'll get the horizontal view, and then after clicking once again - vertical. But after clicking I get nothing, even I can't see my log.i message in logcat.

link|improve this question

How are you doing now? Why not follow my answer? – Huang Feb 18 at 13:57
It seemed to me too complicated. Then I noticed someone left negative feedback (-1), though it was not efficient, sorry. – andranikAzizbekyan Feb 18 at 14:34
Ok, I just want to point that: if you just call setContentView() to show different layout, then every time when you show a new view, you have to bind the listener again.You have to call button.setOnclickListener(this); again after set a new view. The most effecient way to bind the listener is to set the onClick attribute in the layout file. Also, I tested, you can use v==button to determine which button is clicked. – Huang Feb 18 at 14:55
@Huang, that was valuable advice, thanks. – andranikAzizbekyan Feb 18 at 19:03
feedback

5 Answers

compare like this v.getId() == R.id.mHorizontalButton.as we can not compare view using ==. Next correction is set onclickListener to button

mVerticalButton = (Button) findViewById(R.id.vertical_button);

mVerticalButton.setOnclickListener(this).

Now it will work.

link|improve this answer
did you solved @android ? – Sameer Feb 18 at 9:10
I've edited my post, look at the code again, it still doesn't work. I get an "Sorry! The application....Force close." error. – andranikAzizbekyan Feb 18 at 10:17
what error show in your logcat.?try to debug your application.put the code in try catch block.when you will debug line by line you will easily find problem – Sameer Feb 18 at 10:34
mVerticalButton = (Button) findViewById(R.id.vertical_button); mVerticalButton.setOnClickListener(this); this button id vertical_button not present in main xml.So comment this line then run – Sameer Feb 18 at 10:35
I get a 02-18 14:49:37.300: E/AndroidRuntime(385): java.lang.RuntimeException: Unable to start activity ComponentInfo{on.my.way/on.my.way.Business}: java.lang.NullPointerException After commenting 2 button lines the program runs. Where do I have nullpointer here? – andranikAzizbekyan Feb 18 at 11:10
show 3 more comments
feedback

You must either call setOnClickListener, as suggested by others or set the onclick XML attribute in your layout.

Like this:

 <Button
                android:onClick="buttonClick"
                android:id="+@id/button1"
                android:text="@string/button" />

in your code:

public void buttonClick(View button)
{
   if (button.getId() == R.id.button1)
   { // do something
   }
}
link|improve this answer
Do not mind but I think you are not new to svf.If some one has give same answer then its better to appreciate his answer rather than posting new answer – Sameer Feb 18 at 9:21
With 3k reputation I'm not new, and my answer in not the same but points out a different approach. – Drejc Feb 18 at 11:20
@Drejc, this helped me :) Thanks. This was easier and better, than suggested Sameer. – andranikAzizbekyan Feb 18 at 11:39
No problem, please upvote/accept the answer. – Drejc Feb 18 at 11:58
@Drejc, I have 13 reputation, can't upvote it, must have 15 instead. – andranikAzizbekyan Feb 18 at 14:32
feedback

Sorry for my bad english

Instead if (v == mHorizontalButton) and else if (v == mVerticalButton) you must use

switch (v.getId()) {
 case R.id.horizontal_button:
// your processing
break;
case R.id.vertical_button:
  // your processing
break;
link|improve this answer
what will happen if he does not use switch case?Is this will not click? – Sameer Feb 18 at 9:19
no, it is will click. but usually i use switch case instead of if else – budgie Feb 18 at 12:49
feedback

Try this

public void onClick(View v) 
{
    if (v.getId() == R.id.horizontal_button) 
    {
         Log.i(message, "i'm here");
        setContentView(R.layout.main);
    } 
    else if (v.getId() == R.id.vertical_button) 
    {
        Log.i(message, "i'm here");
        setContentView(R.layout.horizontal);
    }
}
link|improve this answer
feedback
up vote 0 down vote accepted

SOLVED!

Here's the code:

public class myClass extends Activity
{           
private Button mHorizontalButton;
private Button mVerticalButton;
/** Called when the activity is first created. */
public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    mHorizontalButton = (Button) findViewById(R.id.horizontal_button);
    mVerticalButton = (Button) findViewById(R.id.vertical_button);
}

public void buttonClick(View button)
{
   if (button.getId() == R.id.vertical_button)
   { 
       setContentView(R.layout.main);
   }
   if(button.getId() == R.id.horizontal_button)
   {
        setContentView(R.layout.horizontal);           
   }
}
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.