目前,我有一个具有以下片段架构的演示应用程序。
MainActivity
|
|-- MainFragment
|
|-- NestedFragment
以下是我如何测试片段重新创建。
MainFragment
onCreate
之前触发NestedFragment
onCreated
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "com.example.yccheok.demo"
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
}
请注意,步骤5会在不同的支持库
下产生不同的行为使用以下build.gradle
MainFragment
在第5步中,在onCreate
的{{1}} 之前触发了NestedFragment
onCreated
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.0"
defaultConfig {
applicationId "com.example.yccheok.demo"
minSdkVersion 14
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.0.0'
}
在第5步中,在NestedFragment
的{{1}} 之前触发了onCreate
MainFragment
可以从https://github.com/yccheok/demo
下载我认为 com.android.support:appcompat-v7:24.0.0 的行为是错误的。不应该在父片段之前创建子片段吗?