123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?xml version="1.0" encoding="utf-8"?>
- <merge xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <!-- native视频广告 , 布局待扩充-->
- <FrameLayout
- android:id="@+id/tt_native_video_layout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center"
- android:visibility="gone">
- <FrameLayout
- android:id="@+id/tt_native_video_frame"
- android:layout_width="wrap_content"
- android:layout_gravity="center"
- android:layout_height="wrap_content" />
- <RelativeLayout
- android:id="@+id/tt_native_video_img_cover"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:visibility="gone">
- <ImageView
- android:id="@+id/tt_native_video_img_id"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_centerInParent="true" />
- <ImageView
- android:id="@+id/tt_native_video_play"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:background="@drawable/tt_new_play_video" />
- </RelativeLayout>
- </FrameLayout>
- </merge>
|