【发布时间】:2015-10-30 22:25:45
【问题描述】:
大家好,我有片段
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.recordings, container, false);
}
这是我的布局
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/recordinglayout">
如果不将它添加到我的活动中,我将如何获得这个片段对象?或者添加一些东西,例如从活动类到片段布局的按钮?
【问题讨论】:
标签: android android-layout android-fragments android-activity