摘要://延迟两秒跳转 new Handler().postDelayed(new Runnable() { @Override public void run() { Intent intent=new Intent(MainActivity.this, Leansons.class); startAc
阅读全文
摘要:private Bitmap toRoundBitmap(Bitmap bitmap) { //--Bitmap转圆形图片Bitmap int width = bitmap.getWidth(); int height = bitmap.getHeight(); float roundPx; flo
阅读全文
摘要:private Bitmap toConformBitmap(Bitmap background, Bitmap foreground) { //--合并两张图片 if( background == null ) { return null; } int bgWidth = background.g
阅读全文
摘要:<TextView android:id="@+id/textciew1" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="#000" android:drawa
阅读全文
摘要:最近在做一个可以让用户修改自己账户资料的activity,具体是打开后有一个EditText,然后用户可以在这里输入相关信息,但是做好后发现,进入这个activity时系统并没有自动弹出输入法键盘,于是上网搜索,发现一个很简单的方法,就是在manifest清单文件对应的activity配置中加入一句
阅读全文