日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

PreferenceScreen1

發布時間:2023/12/14 编程问答 23 豆豆
生活随笔 收集整理的這篇文章主要介紹了 PreferenceScreen1 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

轉載

package com.example.app;

import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.preference.PreferenceActivity;
import android.view.Menu;

import android.view.MenuItem;

public class MainActivity extends PreferenceActivity {

? ? @Override
? ? public void onCreate(Bundle savedInstanceState) {
? ? ? ? ? ? super.onCreate(savedInstanceState);
? ? ? ? ? ? //加載第一個布局
? ? ? ? ? ? addPreferencesFromResource(R.layout.activity_main);? ? ? ? ??
? ? }

}


配置文件

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
? ? android:key="using_categories_in_root_screen"
? ? android:summary="Using Preference Categories"
? ? android:title="Categories" >


? ? <PreferenceCategory
? ? ? ? android:key="meats_screen"
? ? ? ? android:summary="Preferences related to Meats"
? ? ? ? android:title="肉類" >
? ? ? ? <CheckBoxPreference
? ? ? ? ? ? android:key="fish_selection_pref"
? ? ? ? ? ? android:summary="小心扎嗓子"
? ? ? ? ? ? android:title="魚" />
? ? ? ? <CheckBoxPreference
? ? ? ? ? ? android:key="lamb_selection_pref"
? ? ? ? ? ? android:summary="小肥羊吃多了不好"
? ? ? ? ? ? android:title="羊肉" />
? ? ? ? <CheckBoxPreference
? ? ? ? ? ? android:key="chicken_selection_pref"
? ? ? ? ? ? android:summary="營養價值不夠高"
? ? ? ? ? ? android:title="雞肉" />
? ? </PreferenceCategory>
? ? <PreferenceCategory
? ? ? ? android:key="vegi_screen"
? ? ? ? android:summary="Preferences related to vegetable"
? ? ? ? android:title="蔬菜類" >
? ? ? ? <CheckBoxPreference
? ? ? ? ? ? android:key="tomato_selection_pref"
? ? ? ? ? ? android:summary="西紅柿可以炒雞蛋⊙﹏⊙"
? ? ? ? ? ? android:title="西紅柿" />
? ? ? ? <CheckBoxPreference
? ? ? ? ? ? android:key="xilanhua_selection_pref"
? ? ? ? ? ? android:summary="營養價值很豐富"
? ? ? ? ? ? android:title="西蘭花" />
? ? </PreferenceCategory>
</PreferenceScreen>

總結

以上是生活随笔為你收集整理的PreferenceScreen1的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。