android怎么设置单个控件占屏幕的一半,我用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android怎么设置单个控件占屏幕的一半,我用相关的知识,希望对你有一定的参考价值。
参考技术A用ConstraintLayout就可以很容易实现了。
<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">
<TextView
android:id="@+id/button"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:gravity="center"
android:text="textView1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintWidth_percent="0.5"/>
</android.support.constraint.ConstraintLayout>
如何在Android开发中实现屏幕切换
参考技术A 屏幕切换指的是在同一个Activity内屏幕间的切换,最长见的情况就是在一个FrameLayout内有多个页面,比如一个系统设置页面;一个个性化设置页面。android.widget.ViewAnimator类继承至FrameLayout,ViewAnimator类的作用是为FrameLayout里面的View切换提供动画效果。该类有如下几个和动画相关的函数:
setInAnimation:设置View进入屏幕时候使用的动画,该函数有两个版本,一个接受单个参数,类型为 android.view.animation.Animation,一个接受两个参数,类型为Context和int,分别为Context对象和定义 Animation的resourceID。
setOutAnimation: 设置View退出屏幕时候使用的动画,参数setInAnimation函数一样。
showNext: 调用该函数来显示FrameLayout里面的下一个View。
多数情况下是使用ViewFlipper 是继承至FrameLayout的,所以它是一个Layout里面可以放置多个View。ViewFlipper可以用来指定FrameLayout内多 个View之间的切换效果,可以一次指定也可以每次切换的时候都指定单独的效果。
isFlipping:用来判断View切换是否正在进行
setFilpInterval:设置View之间切换的时间间隔
startFlipping:使用上面设置的时间间隔来开始切换所有的View,切换会循环进行
stopFlipping: 停止View切换本回答被提问者采纳
以上是关于android怎么设置单个控件占屏幕的一半,我用的主要内容,如果未能解决你的问题,请参考以下文章
Android的HorizontalScrollView控件里面的自控件无论怎么设置,宽度都无法填满屏幕