解决字段显示过多,不希望叠加换行,超出屏幕范围的情况:
使用第三方:
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 >
网友评论