Tabhost と Fragments を使用して設定されたタブを持つ単純な Android アプリケーションがあります。タブページの 1 つで、フラグメントはリストビューです。私がやりたいことは、ユーザーがリスト ビューの項目の 1 つをクリックしたときに、クリックされた項目に基づいてより具体的な情報を含む新しいビューを開きますが、タブがまだそこにあるように保持することです。
私のアプローチは、ユーザーがリストビューのアイテムをクリックすると、新しいフラグメントが作成され、これらのフラグメントをすべて所有し、タブ ロジックを処理するメインの FragmentActivity クラスから、現在表示されているフラグメントを切り離し、この「新しい」を追加することです。 " (singleStationListItem) フラグメント。私が遭遇している問題は、R.id.realtabcontent を使用して新しいフラグメントを fragmentTransaction に追加できないため、適切に追加されないことです。私は得る:
03-21 10:50:01.862: E/FragmentManager(1136): フラグメント singleStationListItem{40d090a0 #2 id=0x1010000} の ID 0x1010000 (android:attr/theme) のビューが見つかりません
ここで、R.id.realtabcontent = 0x01010000;
Id なしでアタッチできますが、ユーザーは戻ることができません ( addtobackstash() を呼び出します)。私はこのエラーを検索しましたが、他の解決策はタブホストに関連していません.onCreate()でsetContextView(...)を呼び出して、私がフレームレイアウトタグを含むレイアウトの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;
}
どんな助けでも大歓迎です。