Skip to content

Commit

Permalink
\r -> \r\n to make lint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
riksa committed May 23, 2014
1 parent 55557f2 commit 211ae7c
Show file tree
Hide file tree
Showing 13 changed files with 48 additions and 20 deletions.
16 changes: 11 additions & 5 deletions sample/res/layout/create_contact.xml
Expand Up @@ -3,14 +3,18 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >



<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/first_name"
android:textAppearance="?android:attr/textAppearanceMedium" />



<EditText
android:id="@+id/firstNameEditText"
android:layout_width="match_parent"
Expand All @@ -19,18 +23,20 @@

<requestFocus />
</EditText>
<TextView

<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/last_name"
android:textAppearance="?android:attr/textAppearanceMedium" />


<EditText
android:id="@+id/lastNameEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/last_name" />
android:hint="@string/last_name" />

<RadioGroup
android:id="@+id/genderRadioGroup"
Expand Down
5 changes: 4 additions & 1 deletion sample/res/layout/create_folder.xml
Expand Up @@ -4,13 +4,16 @@
android:layout_height="190dp"
android:orientation="vertical" >


<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/name"
android:textAppearance="?android:attr/textAppearanceMedium" />



<EditText
android:id="@+id/nameEditText"
android:layout_width="match_parent"
Expand Down
22 changes: 14 additions & 8 deletions sample/res/layout/explorer.xml
Expand Up @@ -6,8 +6,9 @@
<LinearLayout android:orientation="vertical"
android:id="@+id/linearLayout2"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
android:layout_height="wrap_content">


<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
Expand All @@ -20,8 +21,9 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:prompt="@string/http_method_prompt" />
android:prompt="@string/http_method_prompt" />


<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
Expand All @@ -37,24 +39,28 @@
android:hint="@string/path_hint" >

<requestFocus />
</EditText>
</EditText>




<TextView
android:id="@+id/requestBodyTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/request_body"
android:textAppearance="?android:attr/textAppearanceMedium"
android:visibility="gone" />


<EditText
android:id="@+id/requestBodyText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/request_body_hint"
android:visibility="gone" >

</EditText>
</EditText>

<LinearLayout
android:id="@+id/linearLayout1"
Expand Down
4 changes: 3 additions & 1 deletion sample/res/layout/file_picker.xml
Expand Up @@ -4,14 +4,16 @@
android:layout_height="match_parent"
android:orientation="vertical" >


<ListView
android:id="@id/android:list"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="2"
android:drawSelectorOnTop="false">
</ListView>


<TextView
android:id="@id/android:empty"
android:layout_width="fill_parent"
Expand Down
1 change: 1 addition & 0 deletions sample/res/layout/file_picker_list_item.xml
Expand Up @@ -3,6 +3,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TextView
android:id="@+id/nameTextView"
android:layout_width="fill_parent"
Expand Down
1 change: 1 addition & 0 deletions sample/res/layout/main.xml
Expand Up @@ -3,6 +3,7 @@
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
Expand Down
3 changes: 2 additions & 1 deletion sample/res/layout/signin.xml
Expand Up @@ -3,7 +3,8 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical" >
android:orientation="vertical" >


<TextView
android:id="@+id/textView1"
Expand Down
4 changes: 3 additions & 1 deletion sample/res/layout/skydrive.xml
Expand Up @@ -3,14 +3,16 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<ListView
android:id="@id/android:list"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="2"
android:drawSelectorOnTop="false">
</ListView>


<TextView
android:id="@id/android:empty"
android:layout_width="fill_parent"
Expand Down
1 change: 1 addition & 0 deletions sample/res/layout/skydrive_list_item.xml
Expand Up @@ -4,6 +4,7 @@
android:layout_height="match_parent"
android:orientation="horizontal" >


<ImageView
android:id="@+id/skyDriveItemIcon"
android:layout_width="wrap_content"
Expand Down
1 change: 1 addition & 0 deletions sample/res/layout/view_contact.xml
Expand Up @@ -4,6 +4,7 @@
android:layout_height="match_parent"
android:orientation="vertical" >


<TextView
android:id="@+id/nameTextView"
android:layout_width="wrap_content"
Expand Down
1 change: 1 addition & 0 deletions sample/res/layout/view_contacts.xml
Expand Up @@ -3,6 +3,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<ListView
android:id="@id/android:list"
android:layout_width="fill_parent"
Expand Down
1 change: 1 addition & 0 deletions sample/res/layout/view_contacts_list_item.xml
Expand Up @@ -4,6 +4,7 @@
android:layout_height="match_parent"
android:orientation="vertical" >


<TextView
android:id="@+id/nameTextView"
android:layout_width="fill_parent"
Expand Down
8 changes: 5 additions & 3 deletions sample/res/layout/view_profile.xml
Expand Up @@ -2,14 +2,16 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
android:orientation="vertical" >

<TextView
android:id="@+id/nameTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawablePadding="4dp"
android:textAppearance="?android:attr/textAppearanceLarge" />
android:textAppearance="?android:attr/textAppearanceLarge" />


<Button
android:id="@+id/signOutButton"
android:layout_width="wrap_content"
Expand Down

0 comments on commit 211ae7c

Please sign in to comment.