Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android日常整理(三)---intent打開浏覽器、軟鍵盤彈出

Android日常整理(三)---intent打開浏覽器、軟鍵盤彈出

編輯:關於Android編程

android:textAppearance

Android之系統自帶的文字外觀設置及實際顯示效果圖

android:textAppearance

xml布局裡面設置文字的外觀:

如“android:textAppearance=“?android:attr/textAppearanceLargeInverse”這裡引用的是系統自帶的一個外觀,

?表示系統是否有這種外觀,否則使用默認的外觀。

可設置的值如下:

textAppearanceButton、textAppearanceInverse、textAppearanceLarge、

textAppearanceLargeInverse、 textAppearanceMedium、 textAppearanceSmallInverse、 textAppearanceMediumInverse、

textAppearanceSmall。

android 判斷軟鍵盤 是否彈出

//判斷隱藏軟鍵盤是否彈出

if(getWindow().getAttributes().softInputMode==WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED)

{

//隱藏軟鍵盤

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);

}

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved