91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在Android應用中實現夜間模式

發布時間:2020-11-25 16:43:46 來源:億速云 閱讀:229 作者:Leah 欄目:移動開發

如何在Android應用中實現夜間模式?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

夜間模式實現

所謂的夜間模式,就是能夠根據不同的設定,呈現不同風格的界面給用戶,而且晚上看著不傷眼睛,實現方式也就是所謂的換膚(主題切換)。對于夜間模式的實現網上流傳了很多種方式。也反編譯了幾個新聞類(你懂得)夜間模式實現的比較的好的App,好歹算是實現了。方式有很多,我現在把我所實現原理(內置主題的方式)分享出來,希望能幫到大家,不喜勿噴(近來筆者小心肝不太安生),有更好的方法也歡迎分享。

實現夜間模式的時候,我一直糾結下面幾個問題

  • 從何處著手。
       選中夜間模式,如何才能使當前所看到的頁面立即呈現出夜間模式的效果又不閃屏
  •    其他頁面如何設置,特別是在Actionbar上的或者有側邊欄Menu的,比如使用了(actionbar——sherlock)庫。
  •  上面的問題咱們先一個一個解決:

其一:從何處著手

1.1定義屬性

要想根據主題的不同,設置不同屬性,我們至少需要定義下屬性的名字吧。要不然系統怎么知道去哪找啊!

定義屬性,是在values下進行。

在attrs.xml里定義了幾種屬性。

<&#63;xml version="1.0" encoding="utf-8"&#63;> 
<resources> 
  <attr name="colorValue" format="color" /> 
  <attr name="floatValue" format="float" /> 
  <attr name="integerValue" format="integer" /> 
  <attr name="booleanValue" format="boolean" /> 
  <attr name="dimensionValue" format="dimension" /> 
  <attr name="stringValue" format="string" /> 
  <attr name="referenceValue" format="color|reference" /> 
  <attr name="imageValue" format="reference"/> 
 
  <attr name="curVisibility"> 
  <enum name="show" value="0" /> 
  <!-- Not displayed, but taken into account during layout (space is left for it). --> 
  <enum name="inshow" value="1" /> 
  <!-- Completely hidden, as if the view had not been added. --> 
  <enum name="hide" value="2" /> 
  </attr> 
</resources> 

從上面的xml文件的內容可以看到,attr里可以定義各種屬性類型,如color、float、integer、boolean、dimension(sp、dp/dip、px、pt...)、reference(指向本地資源),還有curVisibility是枚舉屬性,對應view的invisibility、visibility、gone。

1.2定義主題 

接著,我們需要在資源文件中定義若干套主題。并且在主題中設置各個屬性的值。

本例中,我在styles.xml里定義了DayTheme與NightTheme。

<style name="DayTheme" parent="Theme.Sherlock.Light">> 
  <item name="colorValue">@color/title</item> 
  <item name="floatValue">0.35</item> 
  <item name="integerValue">33</item> 
  <item name="booleanValue">true</item> 
  <item name="dimensionValue">16dp</item> 
  <!-- 如果string類型不是填的引用而是直接放一個字符串,在布局文件中使用正常,但代碼里獲取的就有問題 --> 
  <item name="stringValue">@string/action_settings</item> 
  <item name="referenceValue">@drawable/bg</item> 
  <item name="imageValue">@drawable/launcher_icon</item> 
  <item name="curVisibility">show</item> 
</style> 
<style name="NightTheme" parent="Theme.Sherlock.Light"> 
  <item name="colorValue">@color/night_title</item> 
  <item name="floatValue">1.44</item> 
  <item name="integerValue">55</item> 
  <item name="booleanValue">false</item> 
  <item name="dimensionValue">18sp</item> 
  <item name="stringValue">@string/night_action_settings</item> 
  <item name="referenceValue">@drawable/night_bg</item> 
  <item name="imageValue">@drawable/night_launcher_icon</item> 
  <item name="curVisibility">hide</item> 
</style> 

 1.3在布局文件中使用

定義好了屬性,我們接下來就要在布局文件中使用了。

為了使用主題中的屬性來配置界面,我定義了一個名為setting.xml布局文件。 

<&#63;xml version="1.0" encoding="utf-8"&#63;> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent"  
  android:background="&#63;attr/referenceValue" 
  android:orientation="vertical" 
  > 
  <TextView 
    android:id="@+id/setting_Color" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="TextView" 
    android:textColor="&#63;attr/colorValue" /> 
  <CheckBox 
        android:id="@+id/setting_show_answer_switch" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"         
        android:checked="&#63;attr/booleanValue"/>   
  <TextView 
    android:id="@+id/setting_Title" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"  
    android:textSize="&#63;attr/dimensionValue"  
    android:text="@string/text_title" 
    android:textColor="&#63;attr/colorValue" />  
  <TextView 
    android:id="@+id/setting_Text" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"  
    android:text="&#63;attr/stringValue" /> 
 
  <ImageView 
    android:id="@+id/setting_Image" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"   
    android:src="&#63;attr/imageValue" /> 
 
 
  <View android:id="@+id/setting_line" 
    android:layout_width="match_parent" 
    android:layout_height="1dp" 
    android:visibility="&#63;attr/curVisibility" 
    />  
</LinearLayout> 

從這個布局文件中可以看到,通過“&#63;attr/……” 格式來引用主題中的值,包括(字符串、圖片、bool類型、尺寸設置等)。

1.4設置主題及布局文件

布局文件與主題都寫好了,接下來我們就要在Activity的onCreate方法里使用了。

大致應該像這樣子的:

@Override 
  protected void onCreate(Bundle savedInstanceState) {     
    super.onCreate(savedInstanceState); 
    if(MyApplication.appConfig.getNightModeSwitch()){ 
      this.setTheme(R.style.NightTheme); 
    }else{ 
      this.setTheme(R.style.DayTheme); 
    } 
    setContentView(R.layout.setting); 
    ……  
  } 

ps:

  • MyApplication.appConfig.getNightModeSwitch()//是獲取pf中當前所處的模式。
  • 一定要放到setContentView();方法之前設置。
     

如果你使用的fragment 大致應該像下面的樣子:

@Override 
 public View onCreateView(LayoutInflater inflater, ViewGroup container, 
              Bundle savedInstanceState) { 
   if(MyApplication.appConfig.getNightModeSwitch()){ 
     getActivity().setTheme(R.style.NightTheme); 
   }else{ 
     getActivity().setTheme(R.style.DayTheme); 
   } 
   final View view = inflater.inflate(R.layout.setting, null); 
   …… 
 
  } 

ps:建議放到onCreateView(……)方法里面。 

值得注意的是,要是默認主題里沒那些屬性,解析布局文件時候是會crash。這點在配置多個不同style時要主題時,屬性可以多,但一定不能少。

比如在attrs.xml文件中

<item name="floatValue">1.44</item> 
<item name="integerValue">55</item> 

關于如何在Android應用中實現夜間模式問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

弋阳县| 广宗县| 隆安县| 合肥市| 阳江市| 沽源县| 波密县| 莱西市| 嵩明县| 皮山县| 宝应县| 邓州市| 安顺市| 西畴县| 崇信县| 同心县| 基隆市| 寿阳县| 威宁| 翼城县| 海淀区| 庐江县| 隆化县| 和田市| 炉霍县| 昌乐县| 武夷山市| 天台县| 新营市| 田林县| 阿拉善盟| 庆城县| 栾川县| 太白县| 蓬安县| 汝城县| 吴忠市| 新巴尔虎左旗| 泽普县| 沁阳市| 修水县|