不必要的保证金android

时间:2017-02-15 18:38:34

标签: android

我正在使用图片轮播而且由于更多原因,轮播和标题栏或操作栏http://imgur.com/a/Pvonn之间存在差距,因此我必须在上边距添加负值,这是不希望的...

activity_main.xml中

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.mock.vivofusion.MainActivity"

    android:background="#f58b4c">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id ="@+id/viewPagerLayout">

        <android.support.v4.view.ViewPager
            android:id="@+id/viewPager"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>

    </RelativeLayout>
    .......

</RelativeLayout>

swipe_layout.xml(用于轮播)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <ImageView
        android:id = "@+id/image_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</LinearLayout>

如果需要,我也可以提供java类(代码是从网站上“复制粘贴”)。

LE:如何才能使滚动条仅在旋转木马区域可访问?我在任何地方滑动图像继续移动。

1 个答案:

答案 0 :(得分:0)

这可能会有所帮助,android:scaleType="fitStart"

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <ImageView
        android:id = "@+id/image_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:scaleType="fitStart" />

</LinearLayout>