Fragments
This commit is contained in:
20
calculatorpp/res/drawable/second_pane_background.xml
Normal file
20
calculatorpp/res/drawable/second_pane_background.xml
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2007 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="@color/second_pane_background"/>
|
||||
<corners android:radius="1dp" />
|
||||
</shape>
|
@@ -1,21 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!--
|
||||
~ Copyright (c) 2009-2011. Created by serso aka se.solovyev.
|
||||
~ For more information, please, contact se.solovyev@gmail.com
|
||||
~ or visit http://se.solovyev.org
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
|
||||
a:orientation="vertical"
|
||||
a:id="@+id/ad_parent_view"
|
||||
a:layout_width="fill_parent"
|
||||
a:layout_height="fill_parent">
|
||||
|
||||
<ListView
|
||||
a:layout_width="fill_parent"
|
||||
a:layout_height="fill_parent"
|
||||
a:layout_weight="1"
|
||||
a:id="@android:id/list"/>
|
||||
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
|
||||
a:orientation="vertical"
|
||||
a:id="@+id/ad_parent_view"
|
||||
style="?fragmentLayoutStyle"
|
||||
a:layout_width="match_parent"
|
||||
a:layout_height="match_parent">
|
||||
|
||||
<TextView a:id="@+id/fragmentTitle"
|
||||
a:layout_height="wrap_content"
|
||||
a:layout_width="match_parent"
|
||||
style="?fragmentTitleStyle"/>
|
||||
|
||||
<ListView style="?fragmentListViewStyle"/>
|
||||
|
||||
</LinearLayout>
|
@@ -1,66 +1,66 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (c) 2009-2011. Created by serso aka se.solovyev.
|
||||
~ For more information, please, contact se.solovyev@gmail.com
|
||||
~ or visit http://se.solovyev.org
|
||||
-->
|
||||
|
||||
<resources>
|
||||
<style name="default_digit_button_style" parent="button_style">
|
||||
<item name="android:background">@drawable/default_button</item>
|
||||
</style>
|
||||
|
||||
<style name="default_control_button_style" parent="button_style"/>
|
||||
|
||||
<style name="default_operation_button_style" parent="default_digit_button_style">
|
||||
<item name="android:textColor">@color/button_operator_text_color</item>
|
||||
</style>
|
||||
|
||||
<style name="default_control_image_button_style" parent="default_control_button_style">
|
||||
<item name="android:padding">6dp</item>
|
||||
</style>
|
||||
|
||||
<style name="default_second_pane_style">
|
||||
<item name="android:background">@color/second_pane_background</item>
|
||||
<item name="android:layout_margin">5dp</item>
|
||||
</style>
|
||||
|
||||
<style name="default_fragment_list_view_style">
|
||||
<item name="android:id">@android:id/list</item>
|
||||
<item name="android:divider">@null</item>
|
||||
<item name="android:dividerHeight">0dp</item>
|
||||
<item name="android:cacheColorHint">@android:color/transparent</item>
|
||||
<item name="android:layout_height">match_parent</item>
|
||||
<item name="android:layout_width">match_parent</item>
|
||||
<item name="android:layout_weight">1</item>
|
||||
</style>
|
||||
|
||||
<style name="default_fragment_title_style">
|
||||
<item name="android:textColor">@android:color/white</item>
|
||||
<item name="android:textSize">25sp</item>
|
||||
<item name="android:layout_marginLeft">6dp</item>
|
||||
</style>
|
||||
|
||||
<style name="default_button_style" parent="button_style">
|
||||
<item name="android:background">@drawable/metro_button_blue</item>
|
||||
</style>
|
||||
|
||||
<style name="default_fragment_layout_style">
|
||||
<item name="android:layout_marginBottom">5dp</item>
|
||||
<item name="android:layout_marginTop">5dp</item>
|
||||
<item name="android:layout_marginLeft">5dp</item>
|
||||
<item name="android:layout_marginRight">0dp</item>
|
||||
</style>
|
||||
|
||||
<style name="default_theme" parent="Theme.Sherlock">
|
||||
<item name="digitButtonStyle">@style/default_digit_button_style</item>
|
||||
<item name="controlButtonStyle">@style/default_control_button_style</item>
|
||||
<item name="controlImageButtonStyle">@style/default_control_image_button_style</item>
|
||||
<item name="operationButtonStyle">@style/default_operation_button_style</item>
|
||||
<item name="fragmentLayoutStyle">@style/default_fragment_layout_style</item>
|
||||
<item name="secondPaneStyle">@style/default_second_pane_style</item>
|
||||
<item name="fragmentTitleStyle">@style/default_fragment_title_style</item>
|
||||
<item name="fragmentListViewStyle">@style/default_fragment_list_view_style</item>
|
||||
<item name="buttonStyle">@style/default_button_style</item>
|
||||
</style>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ Copyright (c) 2009-2011. Created by serso aka se.solovyev.
|
||||
~ For more information, please, contact se.solovyev@gmail.com
|
||||
~ or visit http://se.solovyev.org
|
||||
-->
|
||||
|
||||
<resources>
|
||||
<style name="default_digit_button_style" parent="button_style">
|
||||
<item name="android:background">@drawable/default_button</item>
|
||||
</style>
|
||||
|
||||
<style name="default_control_button_style" parent="button_style"/>
|
||||
|
||||
<style name="default_operation_button_style" parent="default_digit_button_style">
|
||||
<item name="android:textColor">@color/button_operator_text_color</item>
|
||||
</style>
|
||||
|
||||
<style name="default_control_image_button_style" parent="default_control_button_style">
|
||||
<item name="android:padding">6dp</item>
|
||||
</style>
|
||||
|
||||
<style name="default_second_pane_style">
|
||||
<item name="android:background">@drawable/second_pane_background</item>
|
||||
<item name="android:layout_margin">5dp</item>
|
||||
</style>
|
||||
|
||||
<style name="default_fragment_list_view_style">
|
||||
<item name="android:id">@android:id/list</item>
|
||||
<item name="android:divider">@null</item>
|
||||
<item name="android:dividerHeight">0dp</item>
|
||||
<item name="android:cacheColorHint">@android:color/transparent</item>
|
||||
<item name="android:layout_height">match_parent</item>
|
||||
<item name="android:layout_width">match_parent</item>
|
||||
<item name="android:layout_weight">1</item>
|
||||
</style>
|
||||
|
||||
<style name="default_fragment_title_style">
|
||||
<item name="android:textColor">@android:color/white</item>
|
||||
<item name="android:textSize">25sp</item>
|
||||
<item name="android:layout_marginLeft">6dp</item>
|
||||
</style>
|
||||
|
||||
<style name="default_button_style" parent="button_style">
|
||||
<item name="android:background">@drawable/metro_button_blue</item>
|
||||
</style>
|
||||
|
||||
<style name="default_fragment_layout_style">
|
||||
<item name="android:layout_marginBottom">5dp</item>
|
||||
<item name="android:layout_marginTop">5dp</item>
|
||||
<item name="android:layout_marginLeft">5dp</item>
|
||||
<item name="android:layout_marginRight">0dp</item>
|
||||
</style>
|
||||
|
||||
<style name="default_theme" parent="Theme.Sherlock">
|
||||
<item name="digitButtonStyle">@style/default_digit_button_style</item>
|
||||
<item name="controlButtonStyle">@style/default_control_button_style</item>
|
||||
<item name="controlImageButtonStyle">@style/default_control_image_button_style</item>
|
||||
<item name="operationButtonStyle">@style/default_operation_button_style</item>
|
||||
<item name="fragmentLayoutStyle">@style/default_fragment_layout_style</item>
|
||||
<item name="secondPaneStyle">@style/default_second_pane_style</item>
|
||||
<item name="fragmentTitleStyle">@style/default_fragment_title_style</item>
|
||||
<item name="fragmentListViewStyle">@style/default_fragment_list_view_style</item>
|
||||
<item name="buttonStyle">@style/default_button_style</item>
|
||||
</style>
|
||||
</resources>
|
Reference in New Issue
Block a user