1

このような質問はたくさんありますが、解決策はうまくいきませんでした。

とにかく、私のメイン アクティビティには、onclick メソッドで別のアクティビティ ViewPowerActivity に移動するボタンがあります。power_view.xml という名前のレイアウト xml ファイルがあります。その中に私はいくつかのレイアウトを持っています:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/screen_margin"
android:layout_marginRight="@dimen/screen_margin"
android:layout_marginTop="@dimen/screen_margin"
android:orientation="vertical" >
...

ViewPowerActivity には基本的な onCreateMethod があります。

public class ViewPowerActivity extends Activity {
    private final static Powers powers=new StubPowers();

    @Override
public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.power_view);

        Power power=powers.getPowers().get(0);
        View powerView = findViewById(R.layout.power_view);
        ...
    }
    ...
}

上記の findViewById 呼び出しは null を返しています。

setContentView(...) の後のすべてのコードを削除してそこに戻ると、空のレイアウトがうまく表示されます。ContentView を設定し、プロジェクトをクリーンアップし、パワー ビューをメイン アクティビティとして設定してみました。他に何がありますか?

4

2 に答える 2

1

あなたのコードから、 power_viewがレイアウトであることは明らかです。xml。したがって、R.id.power_view は正しくありません。

そのレイアウトの親ビューにアクセスしたいようです。次に、次の操作を行います。

親 LinearLayout に ID を設定する必要があります。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:id="@+id/parentLinear"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:layout_marginLeft="@dimen/screen_margin"
     android:layout_marginRight="@dimen/screen_margin"
     android:layout_marginTop="@dimen/screen_margin"
     android:orientation="vertical" >
     ...

それで、

     View powerView = findViewById(R.id.parentLinear);

powerView で他のビューを取得する場合は、xml レイアウトでそのビューに id を設定し、findViewById(R.id.your_view)によってそのビューを power_view に初期化する必要があります。

于 2013-01-11T04:32:24.490 に答える
0
     power_view.xml


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

    android:id="@+id/layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="@dimen/screen_margin"
    android:layout_marginRight="@dimen/screen_margin"
    android:layout_marginTop="@dimen/screen_margin"
    android:orientation="vertical" >



    public class ViewPowerActivity extends Activity {
        private final static Powers powers=new StubPowers();

        @Override
    public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.power_view);

            Power power=powers.getPowers().get(0);
            View powerView = (ViewGroup)findViewById(R.id.layout);
            ...
        }
        ...
    }
于 2013-01-11T04:39:08.713 に答える