android中的布局问题

时间:2014-02-25 11:33:59

标签: android layout

我正在使用Native Android开发应用程序。我在多个屏幕上显示自定义广告。当我从一个屏幕导航到另一个横幅看起来很好。但是当导航横幅尺寸发生变化时突然间。 注意:布局的实现是相同的,因为横幅在同一个标​​签上多次看起来很好,但突然间它改变了它的意图。

请参阅以下图片enter image description here

enter image description here

这是我的广告布局。注意:横幅广告来自后端。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
 >    
 <RelativeLayout 
   android:id="@+id/rl_add"
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:background="#000000"
   >
    <ImageView 
        android:id="@+id/iv_ads"
        android:layout_width="fill_parent" 
        android:scaleType="fitXY"
        android:adjustViewBounds="true"           
        android:layout_height="@dimen/add_height"

        />
</RelativeLayout>

使用webview属性我正在展示这些广告。

0 个答案:

没有答案