@@ -5,6 +5,8 @@ import androidx.annotation.NonNull; | |||||
import com.bonait.bnframework.common.constant.ConfigName; | import com.bonait.bnframework.common.constant.ConfigName; | ||||
import com.bonait.bnframework.common.utils.ToastUtils; | import com.bonait.bnframework.common.utils.ToastUtils; | ||||
import com.bonait.bnframework.modules.home.fragment.from.fragment.SystemCsPLCFragment; | import com.bonait.bnframework.modules.home.fragment.from.fragment.SystemCsPLCFragment; | ||||
import com.bonait.bnframework.modules.home.fragment.from.fragment.WokSetGKCXFragment; | |||||
import com.bonait.bnframework.modules.home.fragment.from.fragment.WokSetTLZZFragment; | |||||
import com.google.android.material.bottomnavigation.BottomNavigationView; | import com.google.android.material.bottomnavigation.BottomNavigationView; | ||||
import androidx.viewpager.widget.ViewPager; | import androidx.viewpager.widget.ViewPager; | ||||
@@ -99,9 +101,8 @@ public class WhActivity extends BaseActivity { | |||||
*/ | */ | ||||
private void initFragment() { | private void initFragment() { | ||||
fragmentAdapter = new FragmentAdapter(getSupportFragmentManager()); | fragmentAdapter = new FragmentAdapter(getSupportFragmentManager()); | ||||
fragmentAdapter.addFragment(new SystemCsPLCFragment()); | |||||
fragmentAdapter.addFragment(new SystemCsControlFragment()); | |||||
fragmentAdapter.addFragment(new WokSetGKCXFragment()); | |||||
fragmentAdapter.addFragment(new WokSetTLZZFragment()); | |||||
fragmentAdapter.addFragment(new SystemCsMonitorFragment()); | fragmentAdapter.addFragment(new SystemCsMonitorFragment()); | ||||
fragmentAdapter.addFragment(new SystemCsFltlFragment()); | fragmentAdapter.addFragment(new SystemCsFltlFragment()); | ||||
viewPager.setAdapter(fragmentAdapter); | viewPager.setAdapter(fragmentAdapter); | ||||
@@ -82,7 +82,7 @@ public class WokSetActivity extends BaseActivity { | |||||
if (s == null || s.isEmpty()) { | if (s == null || s.isEmpty()) { | ||||
ToastUtils.warning("权限密码不能为空!"); | ToastUtils.warning("权限密码不能为空!"); | ||||
} else { | } else { | ||||
if (s.equals(ConfigName.getInstance().user.pass)) { | |||||
if (s.equals("bpa123456")) { | |||||
quanxian.setVisibility(View.GONE); | quanxian.setVisibility(View.GONE); | ||||
viewPager.setVisibility(View.VISIBLE); | viewPager.setVisibility(View.VISIBLE); | ||||
} else { | } else { | ||||
@@ -100,8 +100,8 @@ public class WokSetActivity extends BaseActivity { | |||||
*/ | */ | ||||
private void initFragment() { | private void initFragment() { | ||||
fragmentAdapter = new FragmentAdapter(getSupportFragmentManager()); | fragmentAdapter = new FragmentAdapter(getSupportFragmentManager()); | ||||
fragmentAdapter.addFragment(new WokSetGKCXFragment()); | |||||
fragmentAdapter.addFragment(new WokSetTLZZFragment()); | |||||
fragmentAdapter.addFragment(new SystemCsPLCFragment()); | |||||
fragmentAdapter.addFragment(new SystemCsControlFragment()); | |||||
viewPager.setAdapter(fragmentAdapter); | viewPager.setAdapter(fragmentAdapter); | ||||
} | } | ||||
//-------------------------配置viewPager与fragment关联----------------------------// | //-------------------------配置viewPager与fragment关联----------------------------// | ||||
@@ -114,7 +114,7 @@ | |||||
android:layout_height="@dimen/ll_height" | android:layout_height="@dimen/ll_height" | ||||
stv:sBottomDividerLineMarginLeft="@dimen/dp_40" | stv:sBottomDividerLineMarginLeft="@dimen/dp_40" | ||||
stv:sLeftIconRes="@drawable/device_sz" | stv:sLeftIconRes="@drawable/device_sz" | ||||
stv:sLeftTextString="炒锅出厂调试" | |||||
stv:sLeftTextString="炒锅运维调试" | |||||
stv:sRightIconRes="@drawable/icon_right" /> | stv:sRightIconRes="@drawable/icon_right" /> | ||||
<com.allen.library.SuperTextView | <com.allen.library.SuperTextView | ||||
@@ -2,9 +2,9 @@ | |||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"> | <menu xmlns:android="http://schemas.android.com/apk/res/android"> | ||||
<item | <item | ||||
android:id="@+id/bottom_device_1" | android:id="@+id/bottom_device_1" | ||||
android:title="锅口朝向调试" /> | |||||
android:title="PLC#地址" /> | |||||
<item | <item | ||||
android:id="@+id/bottom_device_2" | android:id="@+id/bottom_device_2" | ||||
android:title="投菜结构调试" /> | |||||
android:title="控制#监控" /> | |||||
</menu> | </menu> |
@@ -2,11 +2,11 @@ | |||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"> | <menu xmlns:android="http://schemas.android.com/apk/res/android"> | ||||
<item | <item | ||||
android:id="@+id/bottom_navigation_0" | android:id="@+id/bottom_navigation_0" | ||||
android:title="PLC#地址" /> | |||||
android:title="锅口#朝向" /> | |||||
<item | <item | ||||
android:id="@+id/bottom_navigation_1" | android:id="@+id/bottom_navigation_1" | ||||
android:title="控制#监控" /> | |||||
android:title="投菜#控制" /> | |||||
<item | <item | ||||
android:id="@+id/bottom_navigation_2" | android:id="@+id/bottom_navigation_2" | ||||