Android Fragment,在TabHost中找不到id的视图

时间:2013-03-21 10:58:30

标签: android android-widget android-fragments android-tabhost

我有一个简单的Android应用程序,其中使用Tabhost和Fragments设置了标签。在其中一个标签页上,片段是列表视图。我想要做的是当用户点击列表视图中的一个项目时,根据单击的项目打开一个包含更多特定信息的新视图,但保留它以便选项卡仍在那里。

我的方法是当用户点击listview中的某个项目时,会创建一个新的片段,然后从我拥有所有这些片段并处理Tab键逻辑的主FragmentActivity类中,它将分离当前显示的片段并添加这个“新”(singleStationListItem)片段。我遇到的问题是我无法使用R.id.realtabcontent将我的新片段添加到fragmentTransaction,因此,它没有正确添加。我明白了:

03-21 10:50:01.862:E / FragmentManager(1136):找不到id 0x1010000(android:attr / theme)的片段,用于片段singleStationListItem {40d090a0#2 id = 0x1010000}

其中R.id.realtabcontent = 0x01010000;

我可以在没有Id的情况下附加它,但是用户无法返回(调用addtobackstash())。我已经搜索了这个错误,但其他解决方案与tabhost没有关系,我似乎做了所需要的,比如在onCreate()中调用setContextView(...)到包含我的framelayout标签的布局的xml文件试图将我的片段附加到。我可以将我的选项卡片段添加到R.id.realtabcontent而不会出现问题。有谁知道什么可能导致我的错误以及我如何解决它?

注意:我按照本教程使标签工作。我的代码非常相似。 http://thepseudocoder.wordpress.com/2011/10/04/android-tabs-the-fragment-way/

我的代码: activiy_main.xml

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

    <TabHost
        android:id="@android:id/tabhost"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical" >

            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="0dp"
                android:layout_height="0dp"
                android:layout_weight="0"
                android:padding="5dp" />

            <FrameLayout
                android:id="@+android:id/realtabcontent"  <--id that I want to set to
                android:layout_width="fill_parent"
                android:layout_height="0dp"
                android:layout_weight="1" />

            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="-4dp"
                android:layout_weight="0"
                android:orientation="horizontal" />
        </LinearLayout>
    </TabHost>
</LinearLayout>

main_activity.java //来自我的片段活动类的部分

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

        // Step 1: Inflate layout
        setContentView(R.layout.activity_main);
        // Step 2: Setup TabHost
        initialiseTabHost(savedInstanceState);
        if (savedInstanceState != null) {
            mTabHost.setCurrentTabByTag(savedInstanceState.getString("tab")); //set the tab as per the saved state
        }
    }

public void onTabChanged(String tag) { //handles tab changes
    TabInfo newTab = (TabInfo) this.mapTabInfo.get(tag);
    if (mLastTab != newTab) {
        FragmentTransaction ft =     this.getSupportFragmentManager().beginTransaction();
        if (mLastTab != null) {
            if (mLastTab.fragment != null) {
                ft.detach(mLastTab.fragment);
            }
        }
        if (newTab != null) {
            if (newTab.fragment == null) {
                newTab.fragment = Fragment.instantiate(this,
                        newTab.clss.getName(), newTab.args);
                ft.add(R.id.realtabcontent, newTab.fragment, newTab.tag); //note it uses the R.id.realtabcontent without any issues here
            } else {
                ft.attach(newTab.fragment);
            }
        }

        Log.d("fragment manager in activity: ", "" + ft.isEmpty());
        mLastTab = newTab;
        ft.commit();
        this.getSupportFragmentManager().executePendingTransactions();
        Log.d("ft ID: ", ft.toString());
    }
}

//This is the callback function inside the listview fragment. I created an interface and it is overwritten in here as suggested by the Android SDK guide
public void onStationSelected(String station) {
    FragmentTransaction ft = this.getSupportFragmentManager().beginTransaction();
    ft.addToBackStack(null);
    ft.addToBackStack(null);

    //create argument for new fragment that will be created
    Bundle b = new Bundle();
    b.putString("station", station);
    Fragment displayStationInfo = Fragment.instantiate(this, singleStationListItem.class.getName(), b);

    Fragment cur = getSupportFragmentManager().findFragmentById(R.id.realtabcontent);
    ft.detach(cur);
    ft.add(R.id.realtabcontent, displayStationInfo); <-- this line causes the error
    ft.commit();
    this.getSupportFragmentManager().executePendingTransactions();
}

singleStationListItem.java就在这里

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    Bundle b = this.getArguments();

    getActivity().setContentView(R.layout.single_station_item_view);

    TextView txtStation = (TextView)   getActivity().findViewById(R.id.station_label);

    String station = b.getString("station");
    // displaying selected product name
    Log.d(TAG, "passed in station information: " + station);
    txtStation.setText(station);
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {

    View v = (LinearLayout)inflater.inflate(R.layout.single_station_item_view, container, false);
    return v;
}

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

我意识到这个问题刚才被问到,我正在为可能遇到这个问题的其他人发布答案。

据我所知,没有'realtabcontent'的Android ID。在您的XML中,删除FrameLayout的ID的“android”部分。

<FrameLayout
    android:id="@+id/realtabcontent"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="1" />

developer documentation上发布的完整XML代码如下:

<android.support.v4.app.FragmentTabHost
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    <TabWidget
        android:id="@android:id/tabs"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0"/>

    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_weight="0"/>

    <FrameLayout
        android:id="@+id/realtabcontent"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"/>

</LinearLayout>

祝你好运,编码愉快!