layout_a.xml.svn-base 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="horizontal" android:background="@drawable/mq_widget_bg"
  4. android:layout_width="310dip" android:layout_height="76dip">
  5. <FrameLayout android:id="@+id/FrameLayout"
  6. android:layout_height="fill_parent" android:layout_width="fill_parent"
  7. android:layout_weight="1">
  8. <LinearLayout android:id="@+id/MoveIn"
  9. android:layout_height="fill_parent" android:layout_width="fill_parent"
  10. android:layoutAnimation="@anim/in_move">
  11. <ImageView android:layout_height="fill_parent"
  12. android:layout_width="fill_parent" android:id="@+id/Move_InImage"
  13. android:scaleType="fitXY" android:adjustViewBounds="true"></ImageView>
  14. </LinearLayout>
  15. <LinearLayout android:layout_height="fill_parent"
  16. android:layout_width="fill_parent" android:id="@+id/MoveOut"
  17. android:layoutAnimation="@anim/out_move">
  18. <ImageView android:layout_height="fill_parent"
  19. android:layout_width="fill_parent" android:id="@+id/Move_OutImage"
  20. android:scaleType="fitXY" android:adjustViewBounds="true"></ImageView>
  21. </LinearLayout>
  22. </FrameLayout>
  23. <!-- <ImageButton android:layout_width="wrap_content"
  24. android:layout_height="wrap_content" android:src="@drawable/widget_arrow_selector_up"
  25. android:clickable="true" android:focusable="true"
  26. android:background="@drawable/edit_theme_black_up"
  27. android:focusableInTouchMode="true" android:adjustViewBounds="true"
  28. android:scaleType="fitXY" android:id="@+id/btn_up"></ImageButton>
  29. -->
  30. <ImageButton android:layout_width="wrap_content"
  31. android:layout_height="wrap_content" android:src="@drawable/widget_arrow_selector"
  32. android:clickable="true" android:focusable="true"
  33. android:background="@drawable/edit_theme_black"
  34. android:focusableInTouchMode="true" android:adjustViewBounds="true"
  35. android:scaleType="fitXY" android:id="@+id/btn_down"></ImageButton>
  36. </LinearLayout>