Themes refactored

This commit is contained in:
serso
2015-02-07 18:06:03 +01:00
parent 323011391c
commit c46a276f3f
87 changed files with 346 additions and 400 deletions

View File

@@ -24,7 +24,7 @@
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/main_fragment_layout"
style="?cpp_fragment_layout_style"
style="@style/CppFragment"
a:layout_width="match_parent"
a:layout_height="match_parent">
@@ -32,11 +32,11 @@
a:id="@+id/fragment_title"
a:layout_height="wrap_content"
a:layout_width="match_parent"
style="?cpp_fragment_title_style"/>
style="@style/CppFragmentTitle"/>
<org.solovyev.android.calculator.AndroidCalculatorDisplayView
a:id="@+id/calculator_display"
style="@style/cpp_display_style"
style="@style/CppText.Display"
a:inputType="textMultiLine"
a:maxLines="3"
a:scrollHorizontally="false"

View File

@@ -24,7 +24,7 @@
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/main_fragment_layout"
style="?cpp_fragment_layout_style"
style="@style/CppFragment"
a:layout_width="match_parent"
a:layout_height="match_parent">
@@ -32,11 +32,11 @@
a:id="@+id/fragment_title"
a:layout_height="wrap_content"
a:layout_width="match_parent"
style="?cpp_fragment_title_style"/>
style="@style/CppFragmentTitle"/>
<org.solovyev.android.calculator.AndroidCalculatorEditorView
a:id="@+id/calculator_editor"
style="@style/cpp_editor_style"
style="@style/CppText.Editor"
a:textIsSelectable="true"
a:singleLine="false"
a:scrollbars="vertical"

View File

@@ -24,7 +24,7 @@
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/main_layout"
a:orientation="vertical"
style="?cpp_main_multi_pane_layout_style">
style="@style/CppMain.Multipane">
<LinearLayout
a:layout_height="0dp"
@@ -44,14 +44,14 @@
a:id="@+id/editorContainer"
a:layout_height="0dp"
a:layout_width="match_parent"
style="?cpp_pane_style"
style="@style/CppPaneStyle"
a:layout_weight="3"/>
<FrameLayout
a:id="@+id/displayContainer"
a:layout_height="0dp"
a:layout_width="match_parent"
style="?cpp_pane_style"
style="@style/CppPaneStyle"
a:layout_weight="1"/>
</LinearLayout>
@@ -62,7 +62,7 @@
a:layout_width="0dp"
a:layout_weight="1"
a:orientation="vertical"
style="?cpp_pane_style"/>
style="@style/CppPaneStyle"/>
</LinearLayout>
@@ -71,6 +71,6 @@
a:layout_height="0dp"
a:layout_width="match_parent"
a:layout_weight="2"
style="?cpp_pane_style_transparent"/>
style="@style/CppPaneStyle.Transparent"/>
</LinearLayout>