avatar

AndroidStudio-界面开发

一、线性界面

将开头的默认的 Android.support.constraint.ConstraintLayout 改成 LinearLayout
这样界面模式便为线性布局
在 LinearLayout 中设置android:orientation:“vertical” 表示垂直线性排列
本质上来说,LinearLayout是一种容器

二、控件ID

  在对应的控件内,输入 android:id="@+id/ID名字" 可以赋予控件ID,例如TextView中,我设置ID tv_content,则只需输入 android:id="@+id/tv_content"

三、设置控件属性

  宽高:  在对应的控件内,输入 android:layout_width="50dp" ,即可以将控件设置为50dp宽度(单位有:dp mm in pt px sp。一般用dp),或者输入 "wrap_content" 自适应宽度、"match_content" 覆盖父控件,android:layout_height 与上面雷同。
  背景:  android:background="@android:color/background_dark" 将背景设置为黑色
  文字位置:   android:gravity="center"

注意事项:1、图片资源,命名开头不可以是数字

四、控件事件绑定
首先需要在XML界面文件设置好按钮的ID,然后在OnCreate()函数中输入以下代码,我们假设按钮的ID为 Btn_add
Button Btn_add = findViewById

文章作者: 咲夜南梦
文章链接: http://yoursite.com/2019/02/14/AndroidStudio-%E7%95%8C%E9%9D%A2%E5%BC%80%E5%8F%91/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 咲夜南梦's 博客
打赏
  • 微信
    微信
  • 支付宝
    支付宝

评论