Android Practice Android设置Button按钮是否点击 Activity中设置不可点击: button.setEnabled(false); Activity中设置可点击: button.setEnabled(true); 或者xml中设置不可点击: an... 11月10日 1,714 Comment 阅读全文
Android Practice Android selectableItemBackground的代码实现 Android xml文件中android:background="?attr/selectableItemBackground"代码实现为: //5.0以上系统判断 if (Build.VERSIO... 10月10日 1,465 Comment 阅读全文
Android Practice Android apk签名 执行命令: jarsigner -verbose -keystore yourkey.jks -signedjar new.apk old.apk alias 10月09日 1,438 Comment 阅读全文
Android Practice 解决Android Studio 3.5格式化XML文件时代码错乱问题 更新Android Studio到3.5之后出现了一个问题,格式化XML文件,代码会出现顺序错乱,包括布局文件和AndroidManifest文件,解决方法记录如下: 打开设置 -> Edito... 10月09日 2,932 Comment 阅读全文
Android Practice Android 禁止截屏和录屏 禁止截屏和录屏代码: @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstan... 09月26日 1,464 Comment 阅读全文
Android Practice Android设置可滚动的TextView 代码实现: TextView textView = (TextView)findViewById(R.id.text_view); textView.setMovementMethod(Scrolli... 10月11日 1,476 Comment 阅读全文