我在笔记本电脑上安装了Android Studio 2.2.2。然后我最近更新了它。但是当我创建一个空项目时,项目中没有dimens.xml。而当我使用Android Studio 2.2.2时,有一个维度目录(带有2个dimens.xml)。我的Android Studio会发生什么?
答案 0 :(得分:17)
您的Android Studio很好。从2.3开始,默认的活动布局模板的根元素为ConstraintLayout
,没有应用边距。在旧模板中,这曾经是RelativeLayout
,其边距设置为dimens.xml
中的资源值。由于这些值不再出现在默认布局文件中,因此默认情况下不会在项目中创建空dimens.xml
。
如果您需要dimens.xml
,则可以使用res/values
在New -> Values resource file
文件夹下创建一个。
供参考,使用dimens
资源的旧默认布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.package.MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />
</LinearLayout>
新的默认值不是:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.package.MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>