編輯:關於Android編程
抖動的輸入框
Java代碼:啟動動畫
[java]
Animation shake = AnimationUtils.loadAnimation(this, R.anim.shake);
findViewById(R.id.pw).startAnimation(shake);
anim/shake.xml
[html]
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="5000"
android:fromXDelta="0"
android:interpolator="@anim/cycle_7"
android:toXDelta="10" />
duration為抖動時間,fromXDelta,toXDelta抖動幅度
anim/cycle_7.xml
[html]
<cycleInterpolator xmlns:android="http://schemas.android.com/apk/res/android"
android:cycles="50" />
main.xml
[html]
<EditText android:id="@+id/pw"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="50dip"
android:clickable="true"
android:singleLine="true"
android:password="true"
/>
作者:Android_Xiaoqi
Android 不僅系統版本眾多,機型眾多,而且各個市場都各有各的政策和審核速度,每次發布一個版本對於開發同學來講都是一種漫長的煎熬。相比於 iOS 兩三天就能達到 80
1.黑白效果復制代碼 代碼如下:/** * 將彩色圖轉換為黑白圖 * &n
先上效果圖實現思路:核心其實就是圓柱的繪制,上下兩個橢圓中間用線起來就行了。直接上代碼/*** Created by catos on 2016/7/21.* 銷售漏斗*
大家好,感覺好像已經很久沒更新博客了。前段時間主要是忙於新書的事情,時間比較緊張。而現在新書已經完稿,剩下的事情就都 是出版社的工作了,那麼我又可以抽出時間來寫寫博客了。