android-app -> app

android-app-tests -> app-tests
This commit is contained in:
serso
2016-01-05 09:46:56 +01:00
parent d834ccc305
commit 7da69a2083
1033 changed files with 4948 additions and 4948 deletions

View File

@@ -0,0 +1,85 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright 2013 serso aka se.solovyev
~
~ 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.
~
~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~ Contact details
~
~ Email: se.solovyev@gmail.com
~ Site: http://se.solovyev.org
-->
<LinearLayout
xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/main_fragment_layout"
style="@style/CppFragment"
a:layout_width="wrap_content"
a:layout_height="match_parent"
a:layout_gravity="center_horizontal"
a:orientation="vertical">
<include layout="@layout/ad" />
<TextView
a:layout_width="match_parent"
a:layout_height="wrap_content"
a:text="@string/cpp_plot_function_line_color_type" />
<Spinner
a:id="@+id/cpp_plot_function_line_color_type_spinner"
a:layout_width="match_parent"
a:layout_height="wrap_content"
a:entries="@array/cpp_plot_line_color_type_names" />
<TextView
a:layout_width="match_parent"
a:layout_height="wrap_content"
a:text="@string/cpp_plot_function_line_color" />
<Spinner
a:id="@+id/cpp_plot_function_line_color_spinner"
a:layout_width="match_parent"
a:layout_height="wrap_content"
a:entries="@array/cpp_plot_line_color_names" />
<TextView
a:layout_width="match_parent"
a:layout_height="wrap_content"
a:text="@string/cpp_plot_function_line_style" />
<Spinner
a:id="@+id/cpp_plot_function_line_style_spinner"
a:layout_width="match_parent"
a:layout_height="wrap_content"
a:entries="@array/cpp_plot_line_style_names" />
<TextView
a:layout_width="match_parent"
a:layout_height="wrap_content"
a:text="@string/cpp_plot_function_line_width" />
<SeekBar
a:id="@+id/cpp_plot_functions_line_width_seekbar"
a:layout_width="match_parent"
a:layout_height="wrap_content" />
<Button
a:id="@+id/cpp_apply_button"
a:layout_width="match_parent"
a:layout_height="wrap_content"
a:text="@string/cpp_apply" />
</LinearLayout>