action_item.xml 743 B

12345678910111213141516171819202122232425
  1. <LinearLayout
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="horizontal"
  4. android:layout_width="fill_parent"
  5. android:layout_height="wrap_content"
  6. android:clickable="true"
  7. android:focusable="true"
  8. android:background="@drawable/action_item_btn">
  9. <ImageView
  10. android:id="@+id/icon"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"/>
  13. <TextView
  14. android:id="@+id/title"
  15. android:layout_width="fill_parent"
  16. android:layout_height="fill_parent"
  17. android:gravity="center_vertical"
  18. android:paddingLeft="5dip"
  19. android:paddingRight="10dip"
  20. android:text="Chart"
  21. android:textColor="#fff"/>
  22. </LinearLayout>