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

Commit 935fd37d authored by Yang Li's avatar Yang Li
Browse files

Revert "Squashed commit of the following:"

This reverts commit f8173411.
parent b3c6addf
Loading
Loading
Loading
Loading
+3 −11
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008-2009 The Android Open Source Project
<!-- Copyright (C) 2008 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.
@@ -14,12 +14,11 @@
     limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.android.gesture.example"
      package="com.android.gesture"
      android:versionCode="1"
      android:versionName="1.0.0">
      <uses-permission android:name="android.permission.READ_CONTACTS" />
      <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name="com.android.gesture.example.GestureEntry"
        <activity android:name="com.android.gesture.example.GestureEntryDemo"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
@@ -27,12 +26,5 @@
            </intent-filter>
        </activity>
        <activity android:name="com.android.gesture.example.GestureLibViewer"/>
        <activity android:name="com.android.gesture.example.ContactListGestureOverlay"
                  android:label="@string/overlay_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest> 
+2 −3
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project
<!-- Copyright (C) 2008 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.
@@ -13,7 +13,6 @@
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
@@ -25,7 +24,7 @@
        android:drawSelectorOnTop="true"
        android:prompt="@string/recognition_result"/>
    
    <com.android.gesture.GestureOverlay 
    <com.android.gesture.GesturePad 
        android:id="@+id/drawingpad"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
+2 −3
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project
<!-- Copyright (C) 2008 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.
@@ -13,7 +13,6 @@
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
@@ -26,7 +25,7 @@
        android:drawSelectorOnTop="true"
        android:prompt="@string/recognition_result"/>
    
    <com.android.gesture.GestureOverlay 
    <com.android.gesture.GesturePad 
        android:id="@+id/drawingpad"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
+1 −1
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project
<!-- Copyright (C) 2008 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.
+0 −12
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <ListView
      android:id="@+id/list" 
      android:layout_width="fill_parent" 
      android:layout_height="0dip"
      android:layout_weight="1"/>
</LinearLayout>
Loading