diff --git a/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/adapter/OchBusStationAdapter.java b/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/adapter/OchBusStationAdapter.java index 59e6699b93..652fcd132f 100644 --- a/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/adapter/OchBusStationAdapter.java +++ b/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/adapter/OchBusStationAdapter.java @@ -56,21 +56,31 @@ public class OchBusStationAdapter extends RecyclerView.Adapter { - showSlidePanle("到达站点,乘客以下车"); - }); } @NonNull @@ -88,15 +84,17 @@ public class OchBusFragment extends BaseOchFragment= stationList.size() - 3) { + moveTo = stationList.size()-1; + } + if (moveTo >= stationList.size()) { + moveTo = stationList.size()-1; + } + rvStationList.smoothScrollToPosition(moveTo); } }); } @@ -137,6 +149,7 @@ public class OchBusFragment extends BaseOchFragment + + + + + + + + + + + + + + \ No newline at end of file diff --git a/OCH/mogo-och-bus/src/main/res/layout/fragment_och_bus.xml b/OCH/mogo-och-bus/src/main/res/layout/fragment_och_bus.xml index 78888b54d8..0b4e125333 100644 --- a/OCH/mogo-och-bus/src/main/res/layout/fragment_och_bus.xml +++ b/OCH/mogo-och-bus/src/main/res/layout/fragment_och_bus.xml @@ -1,9 +1,10 @@ - + android:clickable="true" + android:background="@drawable/module_och_bus_panel_bkg"> - \ No newline at end of file + \ No newline at end of file diff --git a/OCH/mogo-och-bus/src/main/res/layout/item_och_bus_station.xml b/OCH/mogo-och-bus/src/main/res/layout/item_och_bus_station.xml index 9e953e0753..fc3fbba5bf 100644 --- a/OCH/mogo-och-bus/src/main/res/layout/item_och_bus_station.xml +++ b/OCH/mogo-och-bus/src/main/res/layout/item_och_bus_station.xml @@ -1,47 +1,58 @@ - - + android:layout_height="wrap_content"> + + - + - - + + + app:layout_constraintTop_toTopOf="@id/module_mogo_och_bus_station_name" /> \ No newline at end of file diff --git a/OCH/mogo-och/src/main/java/com/mogo/och/BaseOchFragment.java b/OCH/mogo-och/src/main/java/com/mogo/och/BaseOchFragment.java index d7f3aa3540..a96c5bbd5d 100644 --- a/OCH/mogo-och/src/main/java/com/mogo/och/BaseOchFragment.java +++ b/OCH/mogo-och/src/main/java/com/mogo/och/BaseOchFragment.java @@ -12,6 +12,7 @@ import com.mogo.commons.mvp.IView; import com.mogo.commons.mvp.MvpFragment; import com.mogo.commons.mvp.Presenter; import com.mogo.module.common.MogoApisHandler; +import com.mogo.och.view.FrameAnimImageView; import com.mogo.och.view.SlidePanelView; import com.mogo.service.statusmanager.IMogoStatusChangedListener; import com.mogo.service.statusmanager.StatusDescriptor; @@ -27,6 +28,8 @@ public abstract class BaseOchFragment> e private CheckedTextView ctvAutopilotStatus; private FrameLayout flStationPanelContainer; + private FrameAnimImageView fivNoticeHead; + private final SlidePanelView.OnSlidePanelMoveToEndListener onSlideToEndListener = () -> { // 此处做一个代理,处理一下共有情况 hideSlidePanel(); @@ -47,9 +50,11 @@ public abstract class BaseOchFragment> e tvNotice = findViewById(R.id.module_mogo_och_notice); ctvAutopilotStatus = findViewById(R.id.module_mogo_och_autopilot_status); flStationPanelContainer = findViewById(R.id.module_mogo_och_station_panel_container); + fivNoticeHead = findViewById(R.id.module_mogo_och_notice_head); LayoutInflater.from(getContext()).inflate(getStationPanelViewId(), flStationPanelContainer); slidePanelView.setOnSlidePanelMoveToEndListener(onSlideToEndListener); + fivNoticeHead.setAnimRes(sHappy1); checkCallView(MogoApisHandler.getInstance().getApis().getStatusManagerApi().isCallViewShow()); MogoApisHandler.getInstance().getApis().getStatusManagerApi().registerStatusChangedListener("Och", StatusDescriptor.CALL_VIEW, callViewListener); @@ -78,10 +83,14 @@ public abstract class BaseOchFragment> e public void showNotice(String notice) { tvNotice.setText(notice); tvNotice.setVisibility(View.VISIBLE); + fivNoticeHead.setVisibility(View.VISIBLE); + fivNoticeHead.startAnim(); } public void hideNotice(){ tvNotice.setVisibility(View.GONE); + fivNoticeHead.setVisibility(View.GONE); + fivNoticeHead.stopAnim(); } /** @@ -113,4 +122,36 @@ public abstract class BaseOchFragment> e * @return 站点面板view */ public abstract int getStationPanelViewId(); + + private final int[] sHappy1 = { + R.drawable.ic_happy1_00000, + R.drawable.ic_happy1_00001, + R.drawable.ic_happy1_00002, + R.drawable.ic_happy1_00003, + R.drawable.ic_happy1_00004, + R.drawable.ic_happy1_00005, + R.drawable.ic_happy1_00006, + R.drawable.ic_happy1_00007, + R.drawable.ic_happy1_00008, + R.drawable.ic_happy1_00009, + R.drawable.ic_happy1_00010, + R.drawable.ic_happy1_00011, + R.drawable.ic_happy1_00012, + R.drawable.ic_happy1_00013, + R.drawable.ic_happy1_00014, + R.drawable.ic_happy1_00015, + R.drawable.ic_happy1_00016, + R.drawable.ic_happy1_00017, + R.drawable.ic_happy1_00018, + R.drawable.ic_happy1_00019, + R.drawable.ic_happy1_00020, + R.drawable.ic_happy1_00021, + R.drawable.ic_happy1_00022, + R.drawable.ic_happy1_00023, + R.drawable.ic_happy1_00024, + R.drawable.ic_happy1_00025, + R.drawable.ic_happy1_00026, + R.drawable.ic_happy1_00027, + R.drawable.ic_happy1_00028 + }; } diff --git a/OCH/mogo-och/src/main/java/com/mogo/och/view/FrameAnimImageView.java b/OCH/mogo-och/src/main/java/com/mogo/och/view/FrameAnimImageView.java new file mode 100644 index 0000000000..c2776c48b9 --- /dev/null +++ b/OCH/mogo-och/src/main/java/com/mogo/och/view/FrameAnimImageView.java @@ -0,0 +1,65 @@ +package com.mogo.och.view; + +import android.content.Context; +import android.os.Handler; +import android.os.Message; +import android.util.AttributeSet; + +/** + * 帧动画ImageView封装 + * + * @author tongchenfei + */ +public class FrameAnimImageView extends androidx.appcompat.widget.AppCompatImageView implements Handler.Callback { + public static final long FRAME_INTERVAL = 50L; + private final static int MSG_LOOP = 3003; + + public FrameAnimImageView(Context context) { + super(context); + } + + public FrameAnimImageView(Context context, AttributeSet attrs) { + super(context, attrs); + } + + public FrameAnimImageView(Context context, AttributeSet attrs, int defStyleAttr) { + super(context, attrs, defStyleAttr); + } + + private int[] animRes; + private int animPos; + private boolean isInAnim = false; + + private final Handler animHandler = new Handler(this); + + public void setAnimRes(int[] animRes) { + this.animRes = animRes; + } + + public void startAnim() { + isInAnim = true; + animHandler.sendEmptyMessage(MSG_LOOP); + } + + public void stopAnim() { + isInAnim = false; + } + + @Override + protected void onDetachedFromWindow() { + super.onDetachedFromWindow(); + stopAnim(); + } + + @Override + public boolean handleMessage(Message msg) { + if (isInAnim && animRes != null) { + if (animPos >= animRes.length) { + animPos = 0; + } + setImageResource(animRes[animPos++]); + animHandler.sendEmptyMessageDelayed(MSG_LOOP, FRAME_INTERVAL); + } + return true; + } +} diff --git a/OCH/mogo-och/src/main/java/com/mogo/och/view/SlidePanelView.java b/OCH/mogo-och/src/main/java/com/mogo/och/view/SlidePanelView.java index 98101a57b5..db76a5e9f3 100644 --- a/OCH/mogo-och/src/main/java/com/mogo/och/view/SlidePanelView.java +++ b/OCH/mogo-och/src/main/java/com/mogo/och/view/SlidePanelView.java @@ -114,7 +114,7 @@ public class SlidePanelView extends View { textPaint.setShader(textGradient); textPaint.getFontMetrics(blockTextMetrics); - bmBlock = BitmapFactory.decodeResource(getResources(), R.drawable.ic_block); + bmBlock = BitmapFactory.decodeResource(getResources(), R.drawable.module_och_base_slide_block); blockWidth = bmBlock.getWidth(); } diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_block.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_block.png deleted file mode 100644 index da31a871c8..0000000000 Binary files a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_block.png and /dev/null differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00000.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00000.png new file mode 100755 index 0000000000..a2be364289 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00000.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00001.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00001.png new file mode 100755 index 0000000000..9f8cb899c3 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00001.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00002.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00002.png new file mode 100755 index 0000000000..ee79ff71b6 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00002.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00003.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00003.png new file mode 100755 index 0000000000..906eca63b2 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00003.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00004.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00004.png new file mode 100755 index 0000000000..df57c90358 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00004.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00005.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00005.png new file mode 100755 index 0000000000..d2c935fa4b Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00005.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00006.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00006.png new file mode 100755 index 0000000000..b3cf32b2bb Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00006.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00007.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00007.png new file mode 100755 index 0000000000..bbe4856056 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00007.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00008.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00008.png new file mode 100755 index 0000000000..7eab8a09a5 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00008.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00009.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00009.png new file mode 100755 index 0000000000..ac6c5aecfe Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00009.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00010.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00010.png new file mode 100755 index 0000000000..b5e5beb991 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00010.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00011.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00011.png new file mode 100755 index 0000000000..d9305f539f Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00011.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00012.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00012.png new file mode 100755 index 0000000000..c98c20fd84 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00012.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00013.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00013.png new file mode 100755 index 0000000000..7ae4f4dcca Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00013.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00014.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00014.png new file mode 100755 index 0000000000..f3623fb358 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00014.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00015.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00015.png new file mode 100755 index 0000000000..15f966b2fb Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00015.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00016.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00016.png new file mode 100755 index 0000000000..4fdb8fb868 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00016.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00017.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00017.png new file mode 100755 index 0000000000..80b1dcbc36 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00017.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00018.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00018.png new file mode 100755 index 0000000000..eeb361183b Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00018.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00019.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00019.png new file mode 100755 index 0000000000..7258889df0 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00019.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00020.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00020.png new file mode 100755 index 0000000000..4eb85e0276 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00020.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00021.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00021.png new file mode 100755 index 0000000000..020819278d Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00021.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00022.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00022.png new file mode 100755 index 0000000000..a3196f73ea Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00022.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00023.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00023.png new file mode 100755 index 0000000000..b0cd970ea0 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00023.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00024.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00024.png new file mode 100755 index 0000000000..1e5106d7bf Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00024.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00025.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00025.png new file mode 100755 index 0000000000..aa44c54394 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00025.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00026.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00026.png new file mode 100755 index 0000000000..f071ea4658 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00026.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00027.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00027.png new file mode 100755 index 0000000000..904984b70c Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00027.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00028.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00028.png new file mode 100755 index 0000000000..fc3a408dbc Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/ic_happy1_00028.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/module_mogo_och_base_icon_in_autopilot.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/module_mogo_och_base_icon_in_autopilot.png new file mode 100644 index 0000000000..75c26c3d71 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/module_mogo_och_base_icon_in_autopilot.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/module_mogo_och_base_icon_not_in_autopilot.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/module_mogo_och_base_icon_not_in_autopilot.png new file mode 100644 index 0000000000..21dc719ec9 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/module_mogo_och_base_icon_not_in_autopilot.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/module_mogo_och_base_notice_box_bg.9.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/module_mogo_och_base_notice_box_bg.9.png new file mode 100644 index 0000000000..8b4b579b56 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/module_mogo_och_base_notice_box_bg.9.png differ diff --git a/OCH/mogo-och/src/main/res/drawable-xhdpi/module_och_base_slide_block.png b/OCH/mogo-och/src/main/res/drawable-xhdpi/module_och_base_slide_block.png new file mode 100644 index 0000000000..8ffd0abe52 Binary files /dev/null and b/OCH/mogo-och/src/main/res/drawable-xhdpi/module_och_base_slide_block.png differ diff --git a/OCH/mogo-och/src/main/res/drawable/module_mogo_och_base_autopilot_status_icon_selector.xml b/OCH/mogo-och/src/main/res/drawable/module_mogo_och_base_autopilot_status_icon_selector.xml new file mode 100644 index 0000000000..29f2cd11e2 --- /dev/null +++ b/OCH/mogo-och/src/main/res/drawable/module_mogo_och_base_autopilot_status_icon_selector.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/OCH/mogo-och/src/main/res/layout/module_mogo_och_base_fragment.xml b/OCH/mogo-och/src/main/res/layout/module_mogo_och_base_fragment.xml index 251f80379c..eca71bba3b 100644 --- a/OCH/mogo-och/src/main/res/layout/module_mogo_och_base_fragment.xml +++ b/OCH/mogo-och/src/main/res/layout/module_mogo_och_base_fragment.xml @@ -3,6 +3,7 @@ xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" + xmlns:tools="http://schemas.android.com/tools" android:paddingStart="@dimen/module_mogo_och_margin_left" android:paddingTop="@dimen/module_mogo_och_margin_top" android:paddingEnd="@dimen/module_mogo_och_margin_right" @@ -21,8 +22,7 @@ android:layout_width="@dimen/module_mogo_och_autopilot_status_bg_width" android:layout_height="@dimen/module_mogo_och_autopilot_status_bg_height" android:background="@drawable/module_mogo_och_autopilot_status_bg" - android:drawableTop="@drawable/icon_heart_choose" - android:drawablePadding="@dimen/module_mogo_och_autopilot_status_text_drawable_padding" + android:drawableTop="@drawable/module_mogo_och_base_autopilot_status_icon_selector" android:gravity="center" android:textAlignment="center" android:paddingTop="@dimen/module_mogo_och_autopilot_status_text_padding_top" @@ -45,13 +45,24 @@ android:id="@+id/module_mogo_och_notice" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:background="#FF2254B1" + android:background="@drawable/module_mogo_och_base_notice_box_bg" android:maxWidth="@dimen/module_mogo_och_notice_text_max_width" - android:text="请携带好随身物品,注意侧后方来车,感谢体验蘑菇智行自动驾驶车!" + android:text="请携带好随身物品\n注意侧后方来车\n感谢体验蘑菇智行自动驾驶车!" android:textColor="#fff" android:textSize="@dimen/module_mogo_och_notice_text_size" android:visibility="gone" + tools:visibility = "visible" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> + + \ No newline at end of file diff --git a/OCH/mogo-och/src/main/res/values/dimens.xml b/OCH/mogo-och/src/main/res/values/dimens.xml index ec5ee6b546..a26a6dba19 100644 --- a/OCH/mogo-och/src/main/res/values/dimens.xml +++ b/OCH/mogo-och/src/main/res/values/dimens.xml @@ -1,7 +1,7 @@ - 37px + 55px 40px 40px 24px @@ -14,7 +14,7 @@ 120px 20px - 25px + 13px 12px 460px