Browse Source

1.调试页面添加设置默认输入法的方法.

20241218TB223FC(测试jar包)
wangwanlei 4 months ago
parent
commit
d380ed829c

+ 3
- 0
app/src/main/java/com/xhly/manageapp/ui/ManageActivity.kt View File

@@ -273,6 +273,9 @@ class ManageActivity : BaseActivity<BaseViewModel, ActivityManageBinding>() {
273 273
         mBinding.speedBtn.setOnClickListener {
274 274
             ManageApplication.killApplicationProcess("com.coolapk.market")
275 275
         }
276
+        mBinding.inputBtn.setOnClickListener {
277
+            ManageApplication.setDefaultInputMethod("com.xhkjedu.pinyin/.PinyinIME")
278
+        }
276 279
     }
277 280
 
278 281
 

+ 10
- 0
app/src/main/res/layout/activity_manage.xml View File

@@ -70,6 +70,7 @@
70 70
                     android:layout_width="0dp"
71 71
                     android:layout_height="80dp"
72 72
                     android:layout_weight="1"
73
+                    android:visibility="gone"
73 74
                     android:text="数据开关" />
74 75
 
75 76
                 <androidx.appcompat.widget.AppCompatButton
@@ -77,6 +78,7 @@
77 78
                     android:layout_width="0dp"
78 79
                     android:layout_height="80dp"
79 80
                     android:layout_weight="1"
81
+                    android:visibility="gone"
80 82
                     android:text="定位开关" />
81 83
 
82 84
                 <androidx.appcompat.widget.AppCompatButton
@@ -248,7 +250,15 @@
248 250
                     android:layout_height="80dp"
249 251
                     android:layout_weight="1"
250 252
                     android:hint="输入"
253
+                    android:visibility="gone"
251 254
                     android:inputType="text" />
255
+                <androidx.appcompat.widget.AppCompatButton
256
+                    android:id="@+id/input_btn"
257
+                    android:layout_width="0dp"
258
+                    android:layout_height="80dp"
259
+                    android:layout_weight="1"
260
+                    android:visibility="gone"
261
+                    android:text="设置输入法" />
252 262
             </LinearLayout>
253 263
         </androidx.appcompat.widget.LinearLayoutCompat>
254 264
     </androidx.core.widget.NestedScrollView>

Loading…
Cancel
Save