Commit a2495175 by wukun

1,bug修复

2,64位
parent cd36d96e
...@@ -4,69 +4,79 @@ ...@@ -4,69 +4,79 @@
<data class=".AboutUsBinding" /> <data class=".AboutUsBinding" />
<LinearLayout <ScrollView
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent">
android:background="@color/white"
android:orientation="vertical">
<RelativeLayout <LinearLayout
android:id="@+id/title" android:layout_width="match_parent"
style="@style/title"> android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical">
<TextView <RelativeLayout
style="@style/text_title" android:id="@+id/title"
android:text="@string/tv_about" /> style="@style/title">
<ImageView <TextView
android:id="@+id/iv_back" style="@style/text_title"
style="@style/title_image_back" /> android:text="@string/tv_about" />
</RelativeLayout> <ImageView
android:id="@+id/iv_back"
style="@style/title_image_back" />
<ImageView style="@style/card_line" /> </RelativeLayout>
<TextView <ImageView style="@style/card_line" />
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/dp_20"
android:layout_marginTop="@dimen/dp_20"
android:text="@string/hello_engineer"
android:textSize="@dimen/dp_20" />
<TextView <TextView
android:id="@+id/detail" android:layout_width="wrap_content"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_height="wrap_content" android:layout_marginStart="@dimen/dp_20"
android:layout_marginStart="@dimen/dp_20" android:layout_marginTop="@dimen/dp_20"
android:layout_marginTop="10dp" android:text="@string/hello_engineer"
android:layout_marginEnd="@dimen/dp_20" android:textSize="@dimen/dp_20"
android:lineSpacingMultiplier="1.2" android:textColor="@color/text_color"/>
android:text="@string/about_us_detial"
android:textSize="@dimen/dp_20" />
<ImageView <TextView
android:layout_width="wrap_content" android:id="@+id/detail"
android:layout_height="wrap_content" android:layout_width="wrap_content"
android:layout_gravity="center_horizontal" android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dp_20" android:layout_marginStart="@dimen/dp_20"
android:src="@mipmap/app_icon_about_us_bg" /> android:layout_marginTop="10dp"
android:layout_marginEnd="@dimen/dp_20"
android:lineSpacingMultiplier="1.2"
android:text="@string/about_us_detial"
android:textSize="@dimen/dp_20"
android:textColor="@color/text_color"/>
<TextView <ImageView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_gravity="center_horizontal" android:layout_gravity="center_horizontal"
android:layout_marginTop="@dimen/dp_20" android:layout_marginTop="@dimen/dp_20"
android:text="北京大鱼创想科技有限公司 版权所有" android:src="@mipmap/app_icon_about_us_bg" />
android:textSize="@dimen/dp_15" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="@dimen/dp_20"
android:text="北京大鱼创想科技有限公司 版权所有"
android:textSize="@dimen/dp_15"
android:textColor="@color/text_color"/>
<TextView
android:id="@+id/tv_version"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="bottom"
android:paddingTop="@dimen/dp_10"
android:textColor="@color/text_color"
tools:text="v2.7.5" />
</LinearLayout>
</ScrollView>
<TextView
android:id="@+id/tv_version"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="bottom"
android:paddingTop="@dimen/dp_10"
tools:text="v2.7.5" />
</LinearLayout>
</layout> </layout>
\ No newline at end of file
...@@ -15,7 +15,7 @@ isLearnModule=true ...@@ -15,7 +15,7 @@ isLearnModule=true
##maven依赖 ##maven依赖
mavenMode=false mavenMode=false
BASE_URL=http://47.94.101.239:3112 BASE_URL=http://47.94.101.239:3112
IS_64_BIT=false IS_64_BIT=true
Android.useDeprecatedNdk=true Android.useDeprecatedNdk=true
android.useAndroidX=true android.useAndroidX=true
\ No newline at end of file
...@@ -151,10 +151,13 @@ public class CommeWebViewFragment extends DataBindingFragment<FragmentWebviewBin ...@@ -151,10 +151,13 @@ public class CommeWebViewFragment extends DataBindingFragment<FragmentWebviewBin
if (appCacheDir.exists()) { if (appCacheDir.exists()) {
deleteFile(appCacheDir); deleteFile(appCacheDir);
} }
if (mBind != null){
mBind.llWeb.removeAllViews();
}
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
} }
mBind.llWeb.removeAllViews();
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment