Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> [android] 安卓自定義樣式和主題,android安卓

[android] 安卓自定義樣式和主題,android安卓

編輯:關於android開發

[android] 安卓自定義樣式和主題,android安卓


簡單練習自定義樣式和主題,樣式是加在View上,主題是加在Application或者Activity上

styles.xml

<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- 自定義樣式 -->
    <style name="MyFont">
        <item name="android:textColor">#ff0000</item>
        <item name="android:textSize">40sp</item>
    </style>
    <style name="MyFontSon" parent="@style/MyFont">
        <item name="android:textSize">30sp</item>
    </style>
    <!-- 自定義主題 -->
    <style name="MyTheme">
        <item name='android:windowNoTitle'>true</item>
        <item name="android:background">#ffffff</item>
    </style>
</resources>

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    
    <TextView
        
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="樣式和主題"
        />
    <TextView
        
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="樣式和主題"
        />
</LinearLayout>

Manifest.xml

<application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="ss"
        android:theme="@style/MyTheme" >

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