0

TabActivityを拡張するNewTransferActivityクラスがあります。コード:

public class NewTransferActivity extends TabActivity {

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

    TabHost tabHost = getTabHost();
    TabHost.TabSpec spec;

    spec = tabHost.newTabSpec("receiver").setIndicator("Rec").setContent(getReceiverTab());
    tabHost.addTab(spec);

    spec = tabHost.newTabSpec("transfer").setIndicator("Trans").setContent(getTransferTab());
    tabHost.addTab(spec);

}

private TabContentFactory getReceiverTab(){
    TabContentFactory factory = new TabContentFactory() {
        @Override
        public View createTabContent(String tag) {

            ...

            return layout;
        }
    };
    return factory;
}

private TabContentFactory getTransferTab(){
    TabContentFactory factory = new TabContentFactory() {

        @Override
        public View createTabContent(String tag) {
            LinearLayout layout = (LinearLayout) findViewById(R.id.mytrans);

            if (layout == null){
                //layout = new LinearLayout(NewTransferActivity.this);
                System.out.println("NULL>>>>>>");
                return new LinearLayout(NewTransferActivity.this);
            }
            return layout;
        }
    };
    return factory;
} ...

レイアウトを含む私のxmlファイルは次のとおりです。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mytrans"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >


<TextView
    android:id="@+id/textView1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Medium Text"
    android:textAppearance="?android:attr/textAppearanceMedium" />

<EditText
    android:id="@+id/editText1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <requestFocus />
</EditText>


<TextView
    android:id="@+id/textView2"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Medium Text"
    android:textAppearance="?android:attr/textAppearanceMedium" />

<EditText
    android:id="@+id/editText2"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />


<TextView
    android:id="@+id/textView3"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Medium Text"
    android:textAppearance="?android:attr/textAppearanceMedium" />

<EditText
    android:id="@+id/editText3"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />


<TextView
    android:id="@+id/textView4"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Medium Text"
    android:textAppearance="?android:attr/textAppearanceMedium" />

<EditText
    android:id="@+id/editText4"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />

</LinearLayout>

見つけたxmlファイルから単一のタブのレイアウトをロードしたい。残念ながら、getTransferTab()メソッドのレイアウトがnullであるため、NullPointerExceptionが発生します。'LinearLayout layout =(LinearLayout)findViewById(R.id.mytrans)'はnullを返します。私が間違っていることは何ですか?前もって感謝します。

4

2 に答える 2

1

私の最初の考えは、この行で:

 LinearLayout layout = (LinearLayout) findViewById(R.id.mytrans);

findViewByIdあなたはあなたのメソッドを呼び出していますTabContentFactory

にあるそのコマンドのバージョンを呼び出す必要がありますActivity

于 2012-04-24T12:24:08.877 に答える
1

むしろLayoutInflater、xml からビュー階層を取得するために使用する必要があります。

    TabContentFactory factory = new TabContentFactory() {
        @Override
        public View createTabContent(String tag) {

             LayoutInflater inflater = LayoutInflater.from(Activity_Name.this);
             View linearLayout = inflater.inflate(R.layout.mytrans, null);

            return linearLayout;
        }
    };
于 2012-04-24T12:34:57.243 に答える