bdp_toast_account_welcome.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:orientation="horizontal" >
  6. <LinearLayout
  7. android:layout_width="wrap_content"
  8. android:layout_height="wrap_content"
  9. android:layout_marginLeft="12dip"
  10. android:layout_marginRight="12dip"
  11. android:background="@drawable/bdp_bg_white_round"
  12. android:gravity="center_vertical" >
  13. <ImageView
  14. android:id="@+id/img_logo"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:contentDescription="@string/bdp_image"
  18. android:paddingLeft="10dip"
  19. android:scaleType="centerInside"
  20. android:src="@drawable/bdp_welcom_user_icon" />
  21. <TextView
  22. android:id="@+id/txt_tip"
  23. android:layout_width="fill_parent"
  24. android:layout_height="wrap_content"
  25. android:ellipsize="end"
  26. android:gravity="center"
  27. android:padding="10dip"
  28. android:singleLine="true"
  29. android:text="@string/bdp_account_login_welcome"
  30. android:textColor="@color/bdp_blue"
  31. android:textSize="15sp"
  32. android:textStyle="normal" />
  33. </LinearLayout>
  34. </LinearLayout>