layout_alertview_alert.xml 868 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical" android:layout_width="match_parent"
  4. android:background="@drawable/bg_alertview_alert"
  5. android:layout_height="wrap_content">
  6. <include layout="@layout/include_alertheader"
  7. android:layout_width="match_parent"
  8. android:layout_height="wrap_content"/>
  9. <ViewStub
  10. android:id="@+id/viewStubHorizontal"
  11. android:layout="@layout/layout_alertview_alert_horizontal"
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content" />
  14. <ViewStub
  15. android:id="@+id/viewStubVertical"
  16. android:layout="@layout/layout_alertview_alert_vertical"
  17. android:layout_width="match_parent"
  18. android:layout_height="wrap_content" />
  19. </LinearLayout>