如何使视图在屏幕外扩展

时间:2018-11-08 12:00:26

标签: android xml view

我如何进行查看,或者部分内容超出屏幕边界?

我想给人的印象是视图在屏幕之后继续显示

我想做这样的事情:

what i want

但我能得到的最大数量是:

what i got

我已经尝试过使用图像,但是没有满足我的需求。

有人可以帮我吗?

1 个答案:

答案 0 :(得分:0)

您可以轻松地(使用ConstraintLayout实现此目标,如下所示:

代码(要添加到您的build.gradle(模块:应用程序)文件中):

dependencies {
    // For ConstraintLayout:
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'

    // For CircleImageView:
    implementation 'de.hdodenhof:circleimageview:2.2.0'
}

XML代码(用于布局文件):

<?xml version="1.0" encoding="utf-8"?>

<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <de.hdodenhof.circleimageview.CircleImageView
        android:id="@+id/civCircle"
        android:layout_width="720dp"
        android:layout_height="match_parent"
        android:layout_marginTop="25dp"
        android:src="@color/colorPrimaryDark"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintBottom_toBottomOf="parent" />

</android.support.constraint.ConstraintLayout>

屏幕截图(上面的代码):

适用于屏幕尺寸-7.0英寸(1200 x 1920像素)[设备:Nexus 7]

enter image description here

我希望这会对您有所帮助。此外,如果您能找到一些库为您绘制一个椭圆形的视图(如屏幕快照中所示的视图为圆形),那对您来说真是棒极了。