Merge "MessageView: fix rename next/prev in landscape."

This commit is contained in:
Mihai Preda 2010-01-07 02:31:55 -08:00 committed by Android (Google) Code Review
commit 6974852b58
2 changed files with 4 additions and 4 deletions

View File

@ -38,10 +38,10 @@
android:layout_width="0dip" android:layout_width="0dip"
android:layout_height="0dip"> android:layout_height="0dip">
<View <View
android:id="@+id/previous" android:id="@+id/moveToNewer"
android:layout_width="0dip" android:layout_width="0dip"
android:layout_height="0dip" /> android:layout_height="0dip" />
<View android:id="@+id/next" <View android:id="@+id/moveToOlder"
android:layout_width="0dip" android:layout_width="0dip"
android:layout_height="0dip" /> android:layout_height="0dip" />
</FrameLayout> </FrameLayout>

View File

@ -144,8 +144,8 @@ public class MessageViewTests
a.onClick(a.findViewById(R.id.reply)); a.onClick(a.findViewById(R.id.reply));
a.onClick(a.findViewById(R.id.reply_all)); a.onClick(a.findViewById(R.id.reply_all));
a.onClick(a.findViewById(R.id.delete)); a.onClick(a.findViewById(R.id.delete));
a.onClick(a.findViewById(R.id.next)); a.onClick(a.findViewById(R.id.moveToOlder));
a.onClick(a.findViewById(R.id.previous)); a.onClick(a.findViewById(R.id.moveToNewer));
// a.onClick(a.findViewById(R.id.download)); // not revealed yet, so unfair test // a.onClick(a.findViewById(R.id.download)); // not revealed yet, so unfair test
// a.onClick(a.findViewById(R.id.view)); // not revealed yet, so unfair test // a.onClick(a.findViewById(R.id.view)); // not revealed yet, so unfair test
a.onClick(a.findViewById(R.id.show_pictures)); a.onClick(a.findViewById(R.id.show_pictures));