Turn off focusableintouch mode for webview.

Change-Id: Ib21b19c3b68f31f800f010eac228795bc815191e
diff --git a/res/layout/quoted_text.xml b/res/layout/quoted_text.xml
index c846976..9638641 100644
--- a/res/layout/quoted_text.xml
+++ b/res/layout/quoted_text.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!--
-     Copyright (C) 2011 Google Inc.
+     Copyright (C) 2012 Google Inc.
      Licensed to The Android Open Source Project.
 
      Licensed under the Apache License, Version 2.0 (the "License");
@@ -37,7 +37,6 @@
                 android:contentDescription="@string/quoted_text"/>
 
             <TextView
-                android:id="@+id/hide_quoted_text_label"
                 android:text="@string/quoted_text_label"
                 android:textAllCaps="true"
                 android:layout_height="match_parent"
@@ -46,8 +45,7 @@
                 style="@style/QuotedTextHeaderStyle"
                 android:layout_toRightOf="@+id/hide_quoted_text"
                 android:gravity="center_vertical|left"
-                android:ellipsize="end"
-                android:clickable="true" />
+                android:ellipsize="end"/>
         </RelativeLayout>
 
         <View android:layout_height="match_parent"
@@ -63,11 +61,8 @@
             style="@style/RespondInlineButtonStyle"
             android:text="@string/respond_inline"
             android:textAllCaps="true"
-            android:layout_width="0dip"
-            android:layout_weight="1"
+            android:layout_width="wrap_content"
             android:layout_height="wrap_content"
-            android:layout_gravity="center_vertical|right"
-            android:paddingRight="8dip"
             android:background="@null"/>
 
     </LinearLayout>
@@ -82,6 +77,8 @@
     <WebView android:id="@+id/quoted_text_web_view"
         android:layout_height="wrap_content"
         android:layout_width="match_parent"
-        android:layout_below="@id/divider_bar" />
+        android:layout_below="@id/divider_bar"
+        android:focusableInTouchMode="false"
+        android:focusable="false" />
 
 </RelativeLayout>