Android 11源码动态适配屏幕
时间: 2023-06-16 07:03:23 浏览: 180
Android屏幕适配
5星 · 资源好评率100%
Android 11 在屏幕适配方面引入了新的特性,可以更好地适配不同尺寸和密度的屏幕。下面是动态适配屏幕的一些步骤:
1. 使用最新的 Android Studio 创建一个新的 Android 项目,然后选择 Android 11 作为目标版本。
2. 在 AndroidManifest.xml 文件中,添加以下代码:
```
<uses-sdk
android:minSdkVersion="21"
android:targetSdkVersion="30" />
```
其中,minSdkVersion 是最低支持的 Android 版本,targetSdkVersion 是目标 Android 版本。
3. 在 build.gradle 文件中添加以下依赖项:
```
dependencies {
implementation 'androidx.core:core-ktx:1.3.2'
implementation 'com.google.android.material:material:1.3.0-alpha02'
}
```
4. 在 res/values 文件夹中创建一个新的 dimens.xml 文件,然后添加以下代码:
```
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="dp_320">320dp</dimen>
<dimen name="dp_480">480dp</dimen>
<dimen name="dp_600">600dp</dimen>
<dimen name="dp_720">720dp</dimen>
<dimen name="dp_800">800dp</dimen>
</resources>
```
这里定义了一些常见的屏幕尺寸,可以根据自己的需求添加或修改。
5. 在 res/layout 文件夹中创建一个新的 layout.xml 文件,然后添加以下代码:
```
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
```
这里使用了 ConstraintLayout 来布局,TextView 的宽度设置为 0dp,通过约束来适配不同的屏幕尺寸。
6. 在 MainActivity.java 文件中添加以下代码:
```
import android.content.res.Configuration;
import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.view.WindowCompat;
import androidx.core.view.WindowInsetsCompat;
import androidx.core.view.WindowInsetsControllerCompat;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// 获取屏幕密度
float density = getResources().getDisplayMetrics().density;
// 获取屏幕宽度
int screenWidth = getResources().getDisplayMetrics().widthPixels;
// 获取屏幕高度
int screenHeight = getResources().getDisplayMetrics().heightPixels;
// 获取屏幕方向
int orientation = getResources().getConfiguration().orientation;
// 获取屏幕尺寸
int screenSize = getResources().getConfiguration().screenLayout
& Configuration.SCREENLAYOUT_SIZE_MASK;
// 设置状态栏和导航栏颜色
WindowCompat.setDecorFitsSystemWindows(getWindow(), false);
WindowInsetsControllerCompat insetsController = WindowCompat.getInsetsController(getWindow(), getWindow().getDecorView());
insetsController.setSystemBarsAppearance(WindowInsetsControllerCompat.APPEARANCE_LIGHT_NAVIGATION_BARS, WindowInsetsControllerCompat.APPEARANCE_LIGHT_NAVIGATION_BARS);
// 根据屏幕尺寸动态适配布局
if (screenSize >= Configuration.SCREENLAYOUT_SIZE_XLARGE) {
// 大屏幕
if (orientation == Configuration.ORIENTATION_LANDSCAPE) {
// 横屏
findViewById(R.id.textView).setMinimumWidth((int) (density * 600));
} else {
// 竖屏
findViewById(R.id.textView).setMinimumWidth((int) (density * 320));
}
} else {
// 小屏幕
findViewById(R.id.textView).setMinimumWidth(screenWidth);
}
}
}
```
这里获取了屏幕的一些信息,包括屏幕密度、宽度、高度、方向和尺寸,然后根据不同的屏幕尺寸动态适配布局。
7. 运行程序,可以看到 TextView 的宽度根据屏幕尺寸动态适配了。
阅读全文