Android:在非main.xml文件中的findViewById

时间:2012-01-30 15:25:20

标签: android android-layout android-button

我有两个布局:main.xml和journal.xml 当我单击main.xml布局中的按钮时,将打开journal.xml布局。

问题是我想创建一个后退按钮,它将重新打开main.xml布局。 当我尝试做的时候:

ImageButton buttonHome = (ImageButton)findViewById(R.id.image);

找不到图像,因为她不在我的main.xml

你能帮帮我吗。

由于

以下是代码:

public class MDPI_1Activity extends Activity 
{
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.journal);
        ImageButton buttonJournal = (ImageButton)findViewById(R.id.imageButton1); //Journal
        ImageButton buttonHome = (ImageButton)findViewById(R.id.image); //Journal


        buttonJournal.setOnClickListener(new Button.OnClickListener() 
        {

            public void onClick(View v) 
            {

                setContentView(R.layout.journal);
            }
        });


        buttonHome.setOnClickListener(new Button.OnClickListener() 
        {

            public void onClick(View v) 
            {

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

    }

}

“imageButton1”位于我的main.xml文件中并且工作正常,但“image”位于我的第二个名为“journal”的xml文件中,并且不存在于R文件中。

3 个答案:

答案 0 :(得分:4)

我为你编译了代码。这段代码正在我身边。您可以使用按钮以下列方式在两个布局之间切换。

public class TestActivity extends Activity implements OnClickListener {
    Button btnGoToJournal = null;
    Button btnGoToMain = null;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        btnGoToJournal = (Button) findViewById(R.id.btn_go_to_journal);
        btnGoToJournal.setOnClickListener(this);
    }
    @Override
    public void onClick(View v) {
        switch(v.getId()){
        case R.id.btn_go_to_journal:
            setContentView(R.layout.journal);
            btnGoToMain = (Button) findViewById(R.id.btn_go_to_main);
            btnGoToMain.setOnClickListener(this);
            break;
        case R.id.btn_go_to_main:
            setContentView(R.layout.main);
            btnGoToJournal = (Button) findViewById(R.id.btn_go_to_journal);
            btnGoToJournal.setOnClickListener(this);
            break;
        }       
    }
}

<强> main.xml中

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <Button
        android:id="@+id/btn_go_to_journal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Go to journal" />

</LinearLayout>

<强> Journal.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <Button
        android:id="@+id/btn_go_to_main"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Go to Main" />

</LinearLayout>

答案 1 :(得分:1)

编辑:我不知道这是否可行..但您可以在布局(XML)上设置onClick参数,如下所示:

//Activity
public class MDPI_1Activity extends Activity 
{
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.journal);

    }


    public void goJournal(View v)
    {

        setContentView(R.layout.journal);
    }


    public void goHome(View v)
    {

        setContentView(R.layout.main);
    }

}

//BUTTON IN HOME LAYOUT
<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Journal"
    android:onClick="goJournal" />

//BUTTON IN JOURNAL LAYOUT
<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Home"
    android:onClick="goHome" />

答案 2 :(得分:1)

您需要为两个布局使用单独的活动。您可以这样调用和显示它们:

Intent yourIntent = new Intent(currentActivity.this, nextActivity.class);
startActivity(yourIntent);

您可以点击按钮执行此操作。不要忘记在AndroidManifest.xml中声明活动。如果您需要任何帮助,请告诉我。