Android会隐藏屏幕后面的视图

时间:2015-04-24 05:53:02

标签: android view imageview

你好我正在使用android.I有一个自定义的imageview.I想隐藏屏幕后面的部分imageview。我试过padding = -100 ......等但是它没有用。我怎么能隐藏在屏幕后面的视图?

2 个答案:

答案 0 :(得分:1)

对此父级布局使用负边距,其工作

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    **android:layout_marginTop="-20dp"** >

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/ic_launcher" />

</RelativeLayout>

答案 1 :(得分:0)

您需要通过java创建视图或制作半圆形图并将其设置为imageview的背景。

请参阅:Semicircle drawable