写个Fragment的使用例子
时间: 2023-07-11 09:11:04 浏览: 82
简单的Fragment例子
好的,以下是一个简单的Fragment使用例子:
1. 创建一个MyFragment类,继承Fragment类,并实现onCreateView方法:
```
public class MyFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_my, container, false);
return view;
}
}
```
2. 在res目录下创建一个fragment_my.xml布局文件,用于定义Fragment的UI界面:
```
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This is my fragment."/>
</LinearLayout>
```
3. 在MainActivity中添加Fragment,并将其显示出来:
```
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// 添加Fragment
FragmentManager fragmentManager = getSupportFragmentManager();
FragmentTransaction transaction = fragmentManager.beginTransaction();
MyFragment fragment = new MyFragment();
transaction.add(R.id.fragment_container, fragment);
transaction.commit();
}
}
```
4. 在activity_main.xml布局文件中,添加一个FrameLayout作为Fragment的容器:
```
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
```
通过以上步骤,就可以将MyFragment添加到MainActivity中,并在UI界面上展示出来。
阅读全文