使用新浪oauth:
http://www.cnblogs.com/liangxing/archive/2010/10/19/1855938.html
申請了Appid,使用很簡單,官方給的sdk裡面有兩個項目,一個是源檔案,另一個是使用demo。
填上token,secret後,callback_url可以填自己的部落格,demo就能使用了。
注意:demo右擊--屬性--Android--後邊下面的Library中Add ..\com_weibo_android就能使用了。
進度條:Android loading 效果
Android Market的 Loading效果
http://lishuaishuai.iteye.com/blog/1118969
思路:
http://www.eoeandroid.com/thread-994-1-1.html
在我的實驗中,可以在init()裡面setVisible(VISIBLE),在refresh()中設定為不可見,中間過程交給後台MainService開啟新線程來完成,很優雅。
注意:在Main.xml裡面<include>定義好的progress_bar,比如<include android:id="@+id/progress_loading" layout="@layout/progressbar">
AnimationDrawable逐幀動畫(每一幀都已定義) 和 補間動畫(定義了首尾幀,中間由系統計算得到)
http://hi.baidu.com/lphack/item/e3c182ee316871225a2d64d4
http://wangstar.iteye.com/blog/409115
http://wiki.eoeandroid.com/Drawable_Animation
配合使用,軟體啟動頁面效果不錯。
定義一個補間動畫,監聽補間動畫的開始和結尾事件,作為AnimationDrawable的開始和結束動作。即在開始事件中animDrawable.start();
Toast
小提示
android預定義style:
http://ithinkfeed.iteye.com/blog/837982
字型大小
對於能夠顯示文字的控制項(如TextView EditText RadioButton Button CheckBox Chronometer等等),你有時需要控制字型的大小。Android平台定義了三種字型大小。
"?android:attr/textAppearanceLarge"
"?android:attr/textAppearanceMedium"
"?android:attr/textAppearanceSmall"
使用方法為:
android:textAppearance="?android:attr/textAppearanceLarge"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textAppearance="?android:attr/textAppearanceSmall"
或
style="?android:attr/textAppearanceLarge"
style="?android:attr/textAppearanceMedium"
style="?android:attr/textAppearanceSmall"
字型顏色
android:textColor="?android:attr/textColorPrimary"
android:textColor="?android:attr/textColorSecondary"
android:textColor="?android:attr/textColorTertiary"
android:textColor="?android:attr/textColorPrimaryInverse"
android:textColor="?android:attr/textColorSecondaryInverse"
ProgressBar
style="?android:attr/progressBarStyleHorizontal"
style="?android:attr/progressBarStyleLarge"
style="?android:attr/progressBarStyleSmall"
style="?android:attr/progressBarStyleSmallTitle"
分隔字元
橫向:
<View android:layout_width="fill_parent"
android:layout_height="1dip"
android:background="?android:attr/listDivider" />
縱向:
<View android:layout_width="1dip"
android:layout_height="fill_parent"
android:background="?android:attr/listDivider" />
CheckBox
style="?android:attr/starStyle"
類似標題列效果的TextView
style="?android:attr/listSeparatorTextViewStyle"
其它有用的樣式
android:layout_height="?android:attr/listPreferredItemHeight"
android:paddingRight="?android:attr/scrollbarSize"
style="?android:attr/windowTitleBackgroundStyle"
style="?android:attr/windowTitleStyle"
android:layout_height="?android:attr/windowTitleSize"
android:background="?android:attr/windowBackground"
更多細節可參考SDK文檔的R.attr類。
在MainActivity中載入<include>的view,View progress_bar = this.findViewById(R.id.progress_loading);