在决定发布我自己的问题之前,我浏览了 StackOverflow 几天。我真的想不通。
我正在使用 ActionBarSherlock 来实现一个带有 2 个选项卡的 viewpager。我设法在第一个选项卡上获得了一个 ListView 并且一切正常,至少在我单击其中一个列表项之前是这样。
这是我的 SherlockListFragment 中有趣的代码
@Override
public void onViewCreated(View view, Bundle savedInstanceState){
// Click event for single list row
getListView().setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
Toast.makeText(getActivity(), "CLICKED", Toast.LENGTH_SHORT).show();
HashMap<String, String> videoz = new HashMap<String, String>();
videoz = (HashMap<String, String>) parent.getAdapter().getItem(position);
String videoid = "test";
Prova singleitem = new Prova();
Bundle bundle = new Bundle();
bundle.putString("KEY_ID", videoid);
singleitem.setArguments(bundle);
FragmentTransaction trans = getFragmentManager().beginTransaction();
trans.replace(R.id.main_layout, singleitem);
trans.addToBackStack(null);
trans.commit();
}
});
}
这段代码实际上有效并打开了我的“Prova”片段,但它破坏了一切。它出现在我的 admob 下方(通常粘在底部),并且标签栏不再起作用。我在这里想念什么?
带有标签栏的列表视图仍在工作: http: //imgur.com/FapadTH,TByd05U#1 单击项目后:http: //imgur.com/FapadTH,TByd05U#0
我的主要布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/main_layout"
android:orientation="vertical" >
<android.support.v4.view.ViewPager
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
</android.support.v4.view.ViewPager>
<LinearLayout
android:id="@+id/frame_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true">
<com.google.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="xxxxxx"
ads:adSize="SMART_BANNER"
ads:loadAdOnCreate="false"
/>
</LinearLayout>
</LinearLayout>
提前致谢!