Android Studio开发-day3 UI界面设计

UI界面设计

UI控件的使用

TextView

<TextView
        android:id="@+id/textview"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="This is a TextView"
        android:textColor="#00ff00"
        android:textSize="24sp" />

要想使得文字居中,需要添加属性android:gravity="center",可选择的选项还有top、bottom、left、right、center等,center相当于center_vertical|center_horizontal。
使用android:textSize="24sp"指定文字大小,android:textColor="#00ff00"指定文字颜色。

Button

<Button
        android:id="@+id/button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Button"
        android:textAllCaps="false"/>

在Android中,Button上面的文字默认英文全部大写,可以通过设置android:textAllCaps="false"改变

EditText

<EditText
        android:id="@+id/edittext"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="HelloWorld"
        android:maxLength="20"
        android:maxLines="1" />

通过设置hint属性可以得到提示文字,设置maxLines使得输入框中最大输入行数。

ImageView

<ImageView
        android:id="@+id/imageView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/img_2"
         />

图片文件放入drawable目录中,通过src指定位置。

ProgressBar

这是一种显示进度条的UI,用法如下:

<ProgressBar
        android:id="@+id/progressBar"

        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

这里可以得到一个一直旋转的圆形进度条,要使得进度条消失,就必须使用代码来控制其可见性。
Android中的控件的可见属性有三种:visible、invisible、gone,分别代表可见的、不可见但占据原来的位置、不可见也不占用屏幕控件,可用android:visibility进行指定。使用代码进行设置的时候使用的是setVisibility()方法,可以传入View.VISIBLE,View.INVISIBLE,View.GONE这三个值。
进行如下的测试:

public void onClick(View v) {

            switch (v.getId()){
                case R.id.button:

                if(progressBar.getVisibility()==View.GONE){

                    progressBar.setVisibility(View.VISIBLE);

                }else{
                    progressBar.setVisibility(View.GONE);
                }

                default:
                    break;

            }

        }

同时,可以通过style属性将进度条改为直线型:style="?android:attr/progressBarStyleHorizontal",并且利用max属性将进度条的最大值设置为100。
再次使用代码,可以将进度条动态显示。

public void onClick(View v) {

            switch (v.getId()){
                case R.id.button:
                    int progress = progressBar.getProgress();
                    progress = progress+10;
                    progressBar.setProgress(progress);
                    break;
                default:
                    break;
            }
        }

AlertDialog

此控件会弹出一个对话框,置顶于所有元素之上,会屏蔽掉其它控件。通过代码来实现。

public void onClick(View v) {

            switch (v.getId()){
                case R.id.button:
                    AlertDialog.Builder dialog = new AlertDialog.Builder(MainActivity.this);

                    dialog.setTitle("This is a Dialog");
                    dialog.setMessage("hunimabi");
                    dialog.setCancelable(false); //设置为false,按返回键不能退出

                    dialog.setPositiveButton("ok",new DialogInterface.OnClickListener(){


                        @Override
                        public void onClick(DialogInterface dialog, int which) {



                        }
                    });

                    dialog.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
                        @Override
                        public void onClick(DialogInterface dialog, int which) {

                        }
                    });

                    dialog.show();
                    break;
                default:
                    break;
            }

        }

ProgressDialog

此控件与AlertDialog类似,但是其会显示一个进度条,用代码实现:

 public void onClick(View v) {

            switch (v.getId()){
                case R.id.button:
                    ProgressDialog progressDialog = new ProgressDialog(MainActivity.this);
                    progressDialog.setTitle("Hi");
                    progressDialog.setMessage("sb");
                    progressDialog.show();
                    break;

                default:
                    break;
            }
        }

UI布局

LinerLayout线性布局

此布局通过指定orientation属性指定控件排列方向,可选值为horizontal和vertical。
android:gravity属性可以指定控件在布局中的位置,但是若是垂直布局的话那么只能指定水平相对位置才能生效,同理,水平布局只有指定竖直相对位置才能生效。
android:layout_weight属性指定控件的相对大小,比如一个button为这个属性为3,一个为2,那么第一个button就占据3/5大小。

RelativeLayout相对布局

可以使得控件根据与父布局的相对位置进行定位。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" android:layout_height="match_parent">
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button1"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:id="@+id/button2" />

    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/button2"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:text="Button2" />

    <Button
        android:id="@+id/button4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"

        android:text="Button3" />

    <Button
        android:id="@+id/button5"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_alignParentRight="true"
        android:text="Button4" />

    <Button
        android:id="@+id/button6"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:text="Button5" />

</RelativeLayout>

效果图如下所示:

image.png

也可以根据别的控件进行定位:

<Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button1"
        android:layout_above="@id/button4"
        android:layout_toLeftOf="@id/button4"
        android:id="@+id/button2" />
image.png

FrameLayout帧布局

这一种布局方式默认将控件放在左上角,基本上不怎么用到。

PercentFrameLayout、PercentRelativeLayout百分比布局

百分比布局属于新增的布局,其在support库中,在app/build.gradle中添加依赖

自定义组件

自定义标题栏

写一个简单的xml页面,在主布局中将其引入:

<include layout="@layout/test"/>

再在代码中将原来标题栏隐去,要放置在OnCreate方法中。

ActionBar actionBar = getSupportActionBar();
        if (actionBar!=null){
            actionBar.hide();
        }

like this:

自定义标题
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,711评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,079评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,194评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,089评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,197评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,306评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,338评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,119评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,541评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,846评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,014评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,694评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,322评论 3 318
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,026评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,257评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,863评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,895评论 2 351

推荐阅读更多精彩内容