Android Fragment实现分屏
时间: 2024-03-21 17:41:46 浏览: 85
要在 Android 中实现分屏,可以使用 Fragment 来实现。具体实现步骤如下:
1. 在 AndroidManifest.xml 文件中声明支持分屏功能:
```xml
<activity android:name=".MainActivity"
android:resizeableActivity="true"
android:supportsPictureInPicture="true">
<meta-data
android:name="android.max_aspect"
android:value="2.1" />
</activity>
```
2. 在布局文件中创建两个 Fragment:
```xml
<fragment
android:id="@+id/fragment1"
android:name="com.example.fragmentdemo.Fragment1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1" />
<fragment
android:id="@+id/fragment2"
android:name="com.example.fragmentdemo.Fragment2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1" />
```
3. 在 MainActivity 中实现分屏功能:
```java
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (isInMultiWindowMode()) {
Fragment1 fragment1 = new Fragment1();
Fragment2 fragment2 = new Fragment2();
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
transaction.add(R.id.fragment1, fragment1);
transaction.add(R.id.fragment2, fragment2);
transaction.commit();
}
}
}
```
在 isInMultiWindowMode() 方法中判断是否处于分屏模式,如果是,则创建两个 Fragment 并添加到布局中。
4. 运行程序并进入分屏模式,即可看到两个 Fragment 并排显示在屏幕上。
注意:对于 Android 7.0 及以上版本,需要在 AndroidManifest.xml 文件中声明 android:resizeableActivity="true" 和 android:supportsPictureInPicture="true" 来支持分屏功能。
阅读全文