Pivot控件用来过滤大量的数据集,在不同的视图中查看它们,或者针对同一个数据切换不同的视图。Pivot控件跟Tab控件很像,但它是专门为Windows Phone和触控界面设计的。它通过视图间的横向互相切换,这样就可以让用户 用内置的触控功能来回导航。
在Windows Phone内置的功能中,E-Mail和Calendar功能就是Pivot的一个应用。
<controls:Pivot Title="my test">
<controls:PivotItem Header="周一计划">
<ListBox FontSize="30">
<ListBoxItem Content="oooooooooooo"></ListBoxItem>
<ListBoxItem Content="nnnnnnnnnnnn"></ListBoxItem>
<ListBoxItem Content="eeeeeeeeeeee"></ListBoxItem>
</ListBox>
</controls:PivotItem>
<controls:PivotItem Header="周二计划">
<ListBox FontSize="30" >
<ListBoxItem Content="tttttttttttt"></ListBoxItem>
<ListBoxItem Content="wwwwwwwwwwww"></ListBoxItem>
<ListBoxItem Content="oooooooooooo"></ListBoxItem>
</ListBox>
</controls:PivotItem>
<controls:PivotItem Header="周三计划">
<ListBox FontSize="30">
<ListBoxItem Content="hhhhhhhhhh"></ListBoxItem>
<ListBoxItem Content="rrrrrrrrrr"></ListBoxItem>
<ListBoxItem Content="eeeeeeeeeee"></ListBoxItem>
</ListBox>
</controls:PivotItem>
</controls:Pivot>
考虑到性能,尽量降低PivotItem的个数。
尽量实时加载里面的内容,而不是在程序开始的时候就全部加载。
尽量用Pivot控件显示相同类型的元素或者数据。
不要用Pivot控件实现类似导航工具的功能。
不要使用Application Bar提供导航。如果用Pivot是为了导航效果,那就相当于滥用了。
一、系统自带的主题与样式
android:theme="@android:style/Theme.Dialog" 将一个Activity显示为能话框模式
android:theme="@android:style/Theme.NoTitleBar" 不显示应用程序标题栏
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 不显示应用程序标题栏,并全屏
android:theme="Theme.Light" 背景为白色
android:theme="Theme.Light.NoTitleBar" 白色背景并无标题栏
android:theme="Theme.Light.NoTitleBar.Fullscreen" 白色背景,无标题栏,全屏
android:theme="Theme.Black" 背景黑色
android:theme="Theme.Black.NoTitleBar" 黑色背景并无标题栏
android:theme="Theme.Black.NoTitleBar.Fullscreen" 黑色背景,无标题栏,全屏
android:theme="Theme.Wallpaper" 用系统桌面为应用程序背景
android:theme="Theme.Wallpaper.NoTitleBar" 用系统桌面为应用程序背景,且无标题栏
android:theme="Theme.Wallpaper.NoTitleBar.Fullscreen" 用系统桌面为应用程序背景,无标题栏,全屏
android:theme="Translucent"
android:theme="Theme.Translucent.NoTitleBar"
android:theme="Theme.Translucent.NoTitleBar.Fullscreen"
android:theme="Theme.Panel"
android:theme="Theme.Light.Panel"
待续-------
获取屏幕宽高的2种方法:
Display display = getWindowManager().getDefaultDisplay();
Log.d("view" , "height:" +display.getHeight());
Log.d("view" , "width:" +display.getWidth());
DisplayMetrics displayMetrics = getResources().getDisplayMetrics();
Log.d("view" , "height" +displayMetrics.heightPixels);
Log.d("view" , "width" +displayMetrics.widthPixels);