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

76 lines
2.4 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"
2016-01-04 06:39:25 -05:00
a:layout_width="fill_parent"
a:layout_height="fill_parent"
a:orientation="vertical">
2015-01-19 15:17:58 -05:00
2016-01-04 06:39:25 -05:00
<ImageView
a:id="@+id/about_image"
a:layout_width="200dp"
a:layout_height="200dp"
a:layout_gravity="center"
a:layout_weight="1"
a:padding="6dp"
a:scaleType="center"
a:src="@drawable/logo_wizard" />
2015-01-19 15:17:58 -05:00
2016-01-04 06:39:25 -05:00
<ScrollView
a:layout_width="fill_parent"
a:layout_height="fill_parent"
a:layout_weight="1">
2015-01-19 15:17:58 -05:00
2016-01-04 06:39:25 -05:00
<LinearLayout
a:layout_width="fill_parent"
a:layout_height="wrap_content"
a:orientation="vertical">
2015-01-19 15:17:58 -05:00
2016-01-04 06:39:25 -05:00
<TextView
2016-02-05 15:52:36 -05:00
a:id="@+id/about_text"
2016-01-04 06:39:25 -05:00
style="@style/CppText.About"
a:layout_width="match_parent"
a:layout_height="match_parent"
a:text="@string/c_about_content" />
2015-01-19 15:17:58 -05:00
2016-01-04 06:39:25 -05:00
<TextView
2016-02-05 15:52:36 -05:00
a:id="@+id/about_translators_label"
2016-01-04 06:39:25 -05:00
style="@style/CppText.About"
a:layout_width="match_parent"
a:layout_height="wrap_content"
a:paddingBottom="0dp"
a:text="@string/cpp_translators_text" />
2015-01-19 15:17:58 -05:00
2016-01-04 06:39:25 -05:00
<TextView
2016-02-05 15:52:36 -05:00
a:id="@+id/about_translators"
2016-01-04 06:39:25 -05:00
style="@style/CppText.About"
a:layout_width="match_parent"
a:layout_height="wrap_content"
a:paddingTop="0dp"
a:text="@string/cpp_translators_list" />
2015-01-19 15:17:58 -05:00
2016-01-04 06:39:25 -05:00
</LinearLayout>
</ScrollView>
2011-09-18 14:25:28 -04:00
</LinearLayout>