1

私は Android プログラミングの初心者であり、それを学ぶために、Web 上のリファレンスを使用してサンプル電卓の例を自分で作成しています。これは私がやりたいことです。Google の公式ドキュメントで提供されているチュートリアル「Building you First App」に従い、Intentsクラスを使用してボタンを押すと新しいアクティビティを開始することに成功しました。開始時のアプリケーションのイメージは次のとおりです。 ここに画像の説明を入力

しかし、入力ボタンを押すと、新しいアクティビティに android:background オプションを設定しても、背景がその画像に設定されません。取得できるのは空白のアクティビティだけです。画像は次のとおりです-:

ここに画像の説明を入力

これは、アプリケーションの起動時に起動する MainActivity のコードです -

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@drawable/math_symbols" >

    <Button android:id="@+id/enter_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/enter_button"
            android:onClick="enterCalculator"/>
</LinearLayout>

Enter ボタンを押したときに開始される 2 番目のアクティビティのコードを次に示します。これは Intents を使用して行われます。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:orientation="vertical" 
    android:background="@drawable/calculato_activity_1" >

     <RadioGroup android:id="@+id/operation_radio_group"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="30dip"
            android:orientation="horizontal">

        <RadioButton android:id="@+id/sum"
                 android:layout_width="wrap_content"
                 android:layout_height="wrap_content"
                 android:text="@string/sum">

        </RadioButton>

        <RadioButton android:id="@+id/difference"
                 android:layout_width="wrap_content"
                 android:layout_height="wrap_content"
                 android:text="@string/difference">

        </RadioButton>

        <RadioButton android:id="@+id/multiply"
                 android:layout_width="wrap_content"
                 android:layout_height="wrap_content"
                 android:text="@string/multiply">

        </RadioButton>

    </RadioGroup>
</LinearLayout>

上に背景が表示されず、画面にビューが追加されません。また、 MainActivity クラスでインテントを使用する方法を次に示します-:

package com.example.mathcalculator;

import android.support.v7.app.ActionBarActivity;
import android.support.v7.app.ActionBar;
import android.support.v4.app.Fragment;
import android.content.Intent;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.os.Build;

public class MainActivity extends ActionBarActivity {

    // this is the message used to enter the main calculator activity
    public static String ENTER_MESSAGE = "com.example.mathcalculator.MainActivity.Message";

    // this method is used to enter the actual calculator screen
    public void enterCalculator(View view){

        // we create an Intent to carry over the data from the button and enter the CalculatorActivity1
        Intent intent = new Intent(this, CalculatorActivity1.class);

        // put the key-value pair into the intent
        intent.putExtra(ENTER_MESSAGE, "ENTER");

        // start the new activity with the intent as the input which carries over the message bundle
        startActivity(intent);
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        if (savedInstanceState == null) {
            getSupportFragmentManager().beginTransaction()
                    .add(R.id.container, new PlaceholderFragment()).commit();
        }
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {

        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }

    /**
     * A placeholder fragment containing a simple view.
     */
    public static class PlaceholderFragment extends Fragment {

        public PlaceholderFragment() {
        }

        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container,
                Bundle savedInstanceState) {
            View rootView = inflater.inflate(R.layout.fragment_main, container,
                    false);
            return rootView;
        }
    }

}

CalculatorActivity1 クラスのコードは次のとおりです。

package com.example.mathcalculator;

import android.support.v7.app.ActionBarActivity;
import android.support.v4.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;

public class CalculatorActivity1 extends ActionBarActivity {

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

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {

        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.calculator_activity1, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }

    /**
     * A placeholder fragment containing a simple view.
     */
    public static class PlaceholderFragment extends Fragment {

        public PlaceholderFragment() {
        }

        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container,
                Bundle savedInstanceState) {
            View rootView = inflater.inflate(
                    R.layout.fragment_calculator_activity1, container, false);
            return rootView;
        }
    }

}
4

3 に答える 3

2

フラグメントの変更をコミットしていません。内部 onCreateの後、次のsetContentView(R.layout.xml_file);ようになります。

 if (savedInstanceState == null) {
        getSupportFragmentManager().beginTransaction()
                .add(R.id.container, new PlaceholderFragment()).commit();
    }
于 2014-06-03T21:17:37.350 に答える