首页 > Android studio 第二次作业

Android studio 第二次作业

作业要求:

作一个显示框里面分成三行

一二行占这个框的1/2

第三行独占1/2

第三行里面分成两列第一列占25%,第二列占75%。

屏幕显示效果

实现步骤:

 

 
android:orientation="vertical"注意这里是横向布局

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_gravity="center_horizontal"

android:layout_weight="0.50"这里是设置前两个控件占整个布局的1/2,

android:weightSum="1">






android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="第一行"设置气显示内容

android:id="@+id/textView"

android:layout_gravity="center_horizontal"

android:background="#70DBDB"设置所显示的颜色

android:layout_weight="0.50"/>




android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="第二行"

android:id="@+id/textView2"

android:layout_gravity="center_horizontal"

android:background="#32CD99"

android:layout_weight="0.50"

/>






android:orientation="horizontal"第二个的布局为纵向布局

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_gravity="center_horizontal"

android:layout_weight="0.50"

android:weightSum="1">




android:layout_width="wrap_content"

android:layout_height="match_parent"

android:text="第一列"

android:id="@+id/textView3"

android:layout_weight="0.25"

android:background="#3232CD"/>




android:layout_width="wrap_content"

android:layout_height="match_parent"

android:text="第二列"

android:id="@+id/textView4"

android:background="#4D4DFF"

android:layout_weight="0.75"/>



 

转载于:https://www.cnblogs.com/Silence213/p/5999819.html

更多相关:

  • android:id 为控件指定相应的IDandroid:text 指定控件的文本,置尽量使用strings.xmlandroid:grivity 指定控件的基本位置 ,比如举重,居右,android:padding 指定控件的内边距,控件当中的内容android:singleLine 如果设置为真的话,则将控件的内容在同一行当中显示...

  • 布局主要分两个 其中主布局是

  • 大家平时见到的最多的可能就是Frame动画了,Android中当然也少不了它。它的使用更加简单,只需要创建一个 AnimationDrawabledF对象来表示Frame动画,然后通过addFrame 方法把每一帧要显示的内容添加进去,并设置播放间隔时间,本例子中间隔时间为5S, 最后通过start 方法就可。 以播放这个动画了,...

  • 一:Service简介 Android开发中,当需要创建在后台运行的程序的时候,就要使用到Service。 1:Service(服务)是一个没有用户界面的在后台运行执行耗时操作的应用组件。其他应用组件能够启动Service,并且当用户切换到另外的应用场景,Service将持续在后台运行。另外,一个组件能够绑定到一个service与之交...

  • 1. android:layout_weight使用说明: layout_weight是权重的意思,也就是各个控件所占的比重,用在LinearLayout布局中。当我们使用layout_weight的时候,layout_width和layout_height有三种表示方法   2. android:layout_weight使用之 l...

  • 发现很多Android应用的选项卡 都是显示在页面底部的,网上有资料:通过反射获取TabWidget中的私有变量,改变其值。今天反编译了腾讯微薄,发现实现这个很简单, 只需将布局文件中标签加个android:layout_gravity="bottom", 选项卡就会显示在页面底部,默认是android:...

  • ============问题描述============ 我想把这个LinearLayout宽度设置成为FILL_PARENT,源码如下 LinearLayout checkboxLinearLayout = (LinearLayout) getLayoutInflater().inflate(R.layout.checkboxdoi...