0
|
1 <?xml version="1.0" encoding="utf-8"?>
|
|
2 <!--
|
|
3 /*
|
|
4 * ConnectBot: simple, powerful, open-source SSH client for Android
|
|
5 * Copyright 2007 Kenny Root, Jeffrey Sharkey
|
|
6 *
|
|
7 * Licensed under the Apache License, Version 2.0 (the "License");
|
|
8 * you may not use this file except in compliance with the License.
|
|
9 * You may obtain a copy of the License at
|
|
10 *
|
|
11 * http://www.apache.org/licenses/LICENSE-2.0
|
|
12 *
|
|
13 * Unless required by applicable law or agreed to in writing, software
|
|
14 * distributed under the License is distributed on an "AS IS" BASIS,
|
|
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16 * See the License for the specific language governing permissions and
|
|
17 * limitations under the License.
|
|
18 */
|
|
19 -->
|
|
20
|
|
21 <ScrollView
|
|
22 xmlns:android="http://schemas.android.com/apk/res/android"
|
|
23 android:layout_width="fill_parent"
|
|
24 android:layout_height="wrap_content"
|
|
25 android:layout_weight="1"
|
|
26 >
|
|
27
|
|
28 <LinearLayout
|
|
29 android:orientation="vertical"
|
|
30 android:layout_width="wrap_content"
|
|
31 android:layout_height="wrap_content"
|
|
32 android:padding="10dip"
|
|
33 >
|
|
34
|
|
35 <TextView
|
|
36 android:layout_width="fill_parent"
|
|
37 android:layout_height="wrap_content"
|
|
38 android:text="510 ConnectBot is a simple, powerful, open-source Secure Shell (SSH) client for your Android device."
|
|
39 android:textAppearance="?android:attr/textAppearanceMedium"
|
|
40 />
|
|
41
|
|
42 <TextView
|
|
43 android:layout_width="fill_parent"
|
|
44 android:layout_height="wrap_content"
|
|
45 android:paddingTop="10dip"
|
|
46 android:text="It can manage several SSH sessions, create secure tunnels, and copy/paste between other apps."
|
|
47 android:textAppearance="?android:attr/textAppearanceMedium"
|
|
48 />
|
|
49
|
|
50 <TextView
|
|
51 android:layout_width="fill_parent"
|
|
52 android:layout_height="wrap_content"
|
|
53 android:paddingTop="10dip"
|
|
54 android:text="@string/copyright_info"
|
|
55 android:textAppearance="?android:attr/textAppearanceMedium"
|
|
56 />
|
|
57
|
|
58 <TextView
|
|
59 android:layout_width="fill_parent"
|
|
60 android:layout_height="wrap_content"
|
|
61 android:paddingTop="10dip"
|
|
62 android:autoLink="web"
|
|
63 android:text="@string/copyright_location"
|
|
64 android:textAppearance="?android:attr/textAppearanceMedium"
|
|
65 />
|
|
66
|
|
67 <TextView
|
|
68 android:id="@+id/app_version"
|
|
69 android:layout_width="fill_parent"
|
|
70 android:layout_height="wrap_content"
|
|
71 android:paddingTop="10dip"
|
|
72 android:text=""
|
|
73 android:textAppearance="?android:attr/textAppearanceMedium"
|
|
74 />
|
|
75
|
|
76 </LinearLayout>
|
|
77
|
|
78 </ScrollView>
|