android-calculatorpp/android-app/src/main/res/layout/about_fragment.xml

76 lines
2.1 KiB
XML
Raw Normal View History

2015-01-19 15:17:58 -05:00
<?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:layout_width="fill_parent"
2015-02-09 10:11:26 -05:00
a:layout_height="fill_parent"
a:orientation="vertical">
2015-01-19 15:17:58 -05:00
<ImageView
2015-02-10 18:13:18 -05:00
a:id="@+id/about_image"
a:layout_width="200dp"
a:layout_height="200dp"
2015-01-19 15:17:58 -05:00
a:layout_gravity="center"
2015-02-10 18:13:18 -05:00
a:scaleType="center"
2015-01-19 15:17:58 -05:00
a:layout_weight="1"
a:padding="6dp"
2015-02-10 18:13:18 -05:00
a:src="@drawable/logo_wizard" />
2015-01-19 15:17:58 -05:00
<ScrollView
a:layout_width="fill_parent"
a:layout_height="fill_parent"
a:layout_weight="1">
<LinearLayout
a:layout_width="fill_parent"
a:layout_height="wrap_content"
a:orientation="vertical">
<TextView
a:id="@+id/cpp_about_textview"
2015-02-09 10:11:26 -05:00
style="@style/CppText.About"
2015-01-19 15:17:58 -05:00
a:layout_width="match_parent"
2015-02-09 10:11:26 -05:00
a:layout_height="match_parent"
a:text="@string/c_about_content" />
2015-01-19 15:17:58 -05:00
<TextView
a:id="@+id/cpp_about_translators_text"
2015-02-09 10:11:26 -05:00
style="@style/CppText.About"
2015-01-19 15:17:58 -05:00
a:layout_width="match_parent"
2015-02-09 10:11:26 -05:00
a:layout_height="wrap_content"
2015-01-19 15:17:58 -05:00
a:paddingBottom="0dp"
2015-02-09 10:11:26 -05:00
a:text="@string/cpp_translators_text" />
2015-01-19 15:17:58 -05:00
<TextView
a:id="@+id/cpp_about_translators"
2015-02-09 10:11:26 -05:00
style="@style/CppText.About"
2015-01-19 15:17:58 -05:00
a:layout_width="match_parent"
2015-02-09 10:11:26 -05:00
a:layout_height="wrap_content"
2015-01-19 15:17:58 -05:00
a:paddingTop="0dp"
2015-02-09 10:11:26 -05:00
a:text="@string/cpp_translators_list" />
2015-01-19 15:17:58 -05:00
</LinearLayout>
</ScrollView>
2011-09-18 14:25:28 -04:00
</LinearLayout>