希望你们能帮忙,我有一个有标签的活动,每个标签都是一个片段。我正在使用 Sherlockfragment 库并试图弄清楚如何处理片段布局中的按钮。我目前的代码是:
将选项卡添加到选项卡
mTabsAdapter.addTab(mTabHost.newTabSpec("1").setIndicator("Page 1"),1.Fragment.class, null);
片段类:
public class 1 extends SherlockFragmentActivity {
public static class Fragment extends SherlockFragment {
Fragment newInstance(int num) {
Fragment f = new Fragment();
return f;
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.1, container, false);
return v;
}
}
}
那么布局是:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" >
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content">
<LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content" xmlns:android="http://schemas.android.com/apk/res/android">
<TextView android:text="@string/page1" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</LinearLayout>
</ScrollView>
<ImageButton
android:id="@+id/btn_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:src="@drawable/bt1" />
</RelativeLayout>
我在 Sherlock 样本中找不到任何有用的样本,但如果有我错过的样本,请告诉我。