This commit is contained in:
Martin
2024-09-14 16:38:24 +08:00
parent b9a6d9b966
commit d662d5c3ea
9 changed files with 29 additions and 34 deletions

View File

@@ -26,6 +26,6 @@ public class MyRelativeLayout5 extends RelativeLayout {
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int widthSize = MeasureSpec.getSize(widthMeasureSpec);
heightMeasureSpec = MeasureSpec.makeMeasureSpec(widthSize, MeasureSpec.EXACTLY);
super.onMeasure(widthMeasureSpec, heightMeasureSpec+100);
super.onMeasure(widthMeasureSpec, heightMeasureSpec+150);
}
}

View File

@@ -332,7 +332,7 @@ public class RouteUtil {
*/
public static void forwardCustomerService(String url) {
ARouter.getInstance().build(PATH_CS)
.withString(Constants.URL, url)
.withString(Constants.URL, url+"?1=1")
.navigation();
}