当我在Android Studio上运行构建时,从“ .gradle / caches / transforms-2 / files-2.1 /”中的项目外链接失败。
我删除了.gradle和.idea文件夹,但无法正常工作。我不知道造成这个问题的原因。
android {
compileSdkVersion 29
buildToolsVersion '29.0.2'
defaultConfig {
applicationId "cloud.scalabl.httpspg_app_q0nz5d8azjwlxxrweewghhzuexr7rc.anicast"
minSdkVersion 16
targetSdkVersion 28
versionCode 240
versionName "6.0.16"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
lintOptions {
disable 'MissingTranslation'
}
}
}
dexOptions {
jumboMode true
javaMaxHeapSize "4g"
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
compileOptions {
sourceCompatibility java_version
targetCompatibility java_version
}
aaptOptions {
cruncherEnabled = false
} …Run Code Online (Sandbox Code Playgroud) 我正在使用带有viewpager的recyclerview片段。
我想在屏幕底部进行导航。 在此处输入图片说明
当我单击每个按钮时,每个片段都会显示在frameLayout中。
问题发生在我第二次进入艺术家片段时(第一次出现时,它按照我的意图显示。),如您在此图像中所见,请在此处输入图像描述
片段中没有出现。并滑动屏幕无法正常工作。它应该向左或向右移动摇杆,但停止在我停止移动手指的位置。
这是我的消息来源。
activity_main_board.xml
<RelativeLayout
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">
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/navigation"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true">
</FrameLayout>
<LinearLayout
android:id="@+id/navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="7dp"
android:layout_weight="1"
android:orientation="horizontal">
<ImageView
android:id="@+id/imageView7"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:scaleType="fitXY"
app:srcCompat="@drawable/image_background7" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="53dp"
android:layout_weight="1"
android:orientation="horizontal">
<LinearLayout
android:id="@+id/my_board_button"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center_vertical|center_horizontal"
android:orientation="vertical">
<ImageView
android:id="@+id/imageView10"
android:layout_width="30dp"
android:layout_height="30dp"
app:srcCompat="@drawable/ic_action_my" />
<TextView
android:id="@+id/textView34"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="MY"
android:textSize="10sp" />
</LinearLayout>
<LinearLayout
android:id="@+id/artwork_board_button"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center_vertical|center_horizontal"
android:orientation="vertical">
<ImageView
android:id="@+id/imageView13"
android:layout_width="30dp"
android:layout_height="30dp" …Run Code Online (Sandbox Code Playgroud)