1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Move the ToggleScrollView into the view/ hierarchy

This commit is contained in:
Jesse Vincent 2010-12-13 00:17:54 +00:00
parent aa2960eb04
commit 76b6fa696b
4 changed files with 6 additions and 5 deletions

View File

@ -5,7 +5,7 @@
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<com.fsck.k9.activity.ToggleScrollView
<com.fsck.k9.view.ToggleScrollView
android:id="@+id/top_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
@ -98,7 +98,7 @@
</LinearLayout>
</LinearLayout>
</com.fsck.k9.activity.ToggleScrollView>
</com.fsck.k9.view.ToggleScrollView>
<LinearLayout
android:id="@+id/move_buttons"
android:orientation="horizontal"

View File

@ -5,7 +5,7 @@
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<com.fsck.k9.activity.ToggleScrollView
<com.fsck.k9.view.ToggleScrollView
android:id="@+id/top_view"
android:layout_width="fill_parent"
android:layout_height="0dip"
@ -109,7 +109,7 @@
android:layout_weight="1" />
</LinearLayout>
</LinearLayout>
</com.fsck.k9.activity.ToggleScrollView>
</com.fsck.k9.view.ToggleScrollView>
<LinearLayout
android:id="@+id/move_buttons"
android:orientation="horizontal"

View File

@ -88,6 +88,7 @@ import com.fsck.k9.mail.store.LocalStore.LocalMessage;
import com.fsck.k9.mail.store.LocalStore.LocalTextBody;
import com.fsck.k9.provider.AttachmentProvider;
import com.fsck.k9.view.AccessibleWebView;
import com.fsck.k9.view.ToggleScrollView;
public class MessageView extends K9Activity implements OnClickListener
{

View File

@ -1,4 +1,4 @@
package com.fsck.k9.activity;
package com.fsck.k9.view;
import android.content.Context;
import android.util.AttributeSet;