【android】 新浪oauth,進度條,AnimationDrawable,Toast,android預定義style

來源:互聯網
上載者:User

使用新浪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);

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.