Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b539f8d7 authored by Chia-chi Yeh's avatar Chia-chi Yeh Committed by Android (Google) Code Review
Browse files

Merge "The UI part of the user space VPN support."

parents ff3bdca3 19f054b0
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
#
# Copyright (C) 2011 The Android Open Source Project
#
# 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.
#

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_MODULE_TAGS := optional

LOCAL_SRC_FILES := $(call all-java-files-under, src)

LOCAL_PACKAGE_NAME := VpnDialogs

include $(BUILD_PACKAGE)
+22 −0
Original line number Diff line number Diff line
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.android.vpndialogs">

    <application android:label="VpnDialogs">
        <activity android:name=".ConfirmDialog"
                android:theme="@style/transparent">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.DEFAULT"/>
            </intent-filter>
        </activity>

        <activity android:name=".ManageDialog"
                android:theme="@style/transparent"
                android:noHistory="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.DEFAULT"/>
            </intent-filter>
        </activity>
    </application>
</manifest>
+61 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2011 The Android Open Source Project

     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.
-->

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

    <ImageView android:id="@+id/icon"
            android:layout_width="@android:dimen/app_icon_size"
            android:layout_height="@android:dimen/app_icon_size"
            android:layout_alignParentTop="true"
            android:layout_alignParentLeft="true"
            android:layout_marginRight="1mm"/>

    <TextView android:id="@+id/warning"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentRight="true"
            android:layout_below="@id/icon"
            android:padding="2mm"
            android:text="@string/warning"
            android:textSize="18sp"/>

    <TextView android:id="@+id/prompt"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_alignParentRight="true"
            android:layout_toRightOf="@id/icon"
            android:layout_above="@id/warning"
            android:gravity="center_vertical"
            android:textSize="20sp"/>

    <CheckBox android:id="@+id/check"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentRight="true"
            android:layout_below="@id/warning"
            android:text="@string/accept"


            android:textSize="18sp"
            android:checked="false"/>

</RelativeLayout>
+43 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2011 The Android Open Source Project

     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.
-->

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:stretchColumns="0,1">

    <TableRow>
        <TextView android:text="@string/session" style="@style/label"/>
        <TextView android:id="@+id/session" style="@style/value"/>
    </TableRow>

    <TableRow>
        <TextView android:text="@string/duration" style="@style/label"/>
        <TextView android:id="@+id/duration" style="@style/value"/>
    </TableRow>

    <TableRow>
        <TextView android:text="@string/data_transmitted" style="@style/label"/>
        <TextView android:id="@+id/data_transmitted" style="@style/value"/>
    </TableRow>

    <TableRow>
        <TextView android:text="@string/data_received" style="@style/label"/>
        <TextView android:id="@+id/data_received" style="@style/value"/>
    </TableRow>

</TableLayout>
+45 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2011 The Android Open Source Project

     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.
-->

<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">

    <string name="prompt"><xliff:g id="app">%s</xliff:g>
        attempts to create a VPN connection.
    </string>

    <string name="warning">By proceeding, you are giving the application
        permission to intercept all network traffic.
        <b>Do NOT accept unless you trust the application.</b> Otherwise,
        you run the risk of having your data compromised by a malicious
        software.
    </string>

    <string name="accept">I trust this application.</string>

    <string name="configure">Configure</string>
    <string name="disconnect">Disconnect</string>

    <string name="session">Session:</string>
    <string name="duration">Duration:</string>
    <string name="data_transmitted">Data Transmitted:</string>
    <string name="data_received">Data Received:</string>

    <string name="blank_value">--</string>
    <string name="data_value_format">
        <xliff:g id="number">%1$s</xliff:g> bytes /
        <xliff:g id="number">%2$s</xliff:g> packets
    </string>
</resources>
Loading