美文网首页
字段超出屏滚动显示

字段超出屏滚动显示

作者: 锦文豪武 | 来源:发表于2018-10-17 17:06 被阅读0次

    解决字段显示过多,不希望叠加换行,超出屏幕范围的情况:

    使用第三方:

    http://p.codekk.com/detail/5a5735dbfd1c9b26e2fca7a7

    还有种方式进行超出屏幕能滚动起来
    布局方式:

    <?xml version="1.0" encoding="utf-8"?>
    <HorizontalScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
    <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.explem.chaohaozhao.myviewpager.view.EventBusActivity">
    
    
            <Button
                android:layout_width="1000dp"
                android:layout_height="60dp"
                android:text="1111111111111111111111111111111111111111111111111"/>
    
    
    </android.support.constraint.ConstraintLayout>
    </HorizontalScrollView >
    

    相关文章

      网友评论

          本文标题:字段超出屏滚动显示

          本文链接:https://www.haomeiwen.com/subject/zxyrzftx.html