day01

  1. Android studio 下的布局在content_main.xml中
<?xml version="1.0" encoding="utf-8"?><LinearLayout 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"    android:paddingBottom="@dimen/activity_vertical_margin"    android:paddingLeft="@dimen/activity_horizontal_margin"    android:paddingRight="@dimen/activity_horizontal_margin"    android:paddingTop="@dimen/activity_vertical_margin"    app:layout_behavior="@string/appbar_scrolling_view_behavior"    tools:context="com.example.liuxiaoer.myapplication.MainActivity"    tools:showIn="@layout/activity_main"    android:orientation="vertical"    >    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="Hello 33!" />    <EditText        android:id="@+id/inputText"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:layout_marginTop="30dp"        android:background="#ff0000"        android:text="请输入"        />    <Button        android:id="@+id/btn"        android:layout_width="300dp"        android:layout_height="30dp"        android:text="百度一下,你就知道"        android:layout_marginTop="30dp"        /></LinearLayout>

1.布局方式有LinearLayout :线性布局方式 对应android:orientation="vertical" 水平和垂直两种
系统默认是relativelayout 当然也有 绝对布局 absolutelayout

  1. 安卓设置控件属性 类似RN或H5中的在第一个标签内部进行键值对的布局
    wrap_content:包裹内容 match_parent:和父标签一样大 以前是line_parent好像是这个可能打错了现在已经过期了
    3.设置宽高有6中数据的类型px pt in mm dp sp
    一半宽高用dp 文本用sp
    4.MainActivity中的入口方法是onCreate
    setContentView(R.layout.activity_main);这个是设置它对应的view是R下layout中的activity_main R中都是内部final int等
    可以通过给控件设置id来找到对应的控件类似iOS的tag:android:id="@+id/btn"
    5.按钮的点击
 // 通过id找到按钮    Button bt = (Button) findViewById(R.id.btn);    bt.setOnClickListener(new BtnListen());    // ATTENTION: This was auto-generated to implement the App Indexing API.    // See https://g.co/AppIndexing/AndroidStudio for more information.}class BtnListen implements View.OnClickListener {    @Override    public void onClick(View v) {        // 得到输入框的文字        EditText eT = (EditText) findViewById(R.id.inputText);        System.out.println(eT.getText().toString());    }}
```setOnClickListener设置按钮点击的监听者这个方法是View的方法
按钮继承View 需要传入一个OnClickListener这个是一个接口 需要实现方法
这里 实现接口方法的快捷键是control+i;
6、打电话
```objc
// 告诉系统一个意图Intent it = new Intent();// 设置打电话的电话号码it.setData(Uri.parse("tel:"+et.getText().toString()));// 告诉系统我们的意图是打电话it.setAction(Intent.ACTION_CALL);// 开启打电话 startActivity(it);

7.系统应用 必须获取用户权限
在AndroidMainfestxml中配置
<uses-permission android:name="android.permission.CALL_PHONE"/>
:打电话

  1. 按钮有4种点击方法
    -01. 直接在xml中绑定点击的方法:
    android:onClick="clickBtn2",这个时候 需要在对应的activity中添加public void
    clickBtn2(View v)(){}
    -02.绑定id android:id="@+id/btn_02"
    在activity中获取id btn2 = (Button)findViewById(R.id.btn_02)
    设置按钮的监听者 se'tOnclicklisen()
    需要传入接口 可以传入this那么本类就需要实现对应的onclick 可以使用control+i的快捷键 实现onclick方法
    -03.可以传入一个匿名内部类
    -04.可以创建一个类实现对应的方法的点击 传入这个类的对象即可

9.发送短信 SmsManager

public void sendMns(View v){    // 更具ID获取对应的信息 和 来源 btn    EditText et1 = (EditText)findViewById(R.id.account);    EditText et2 = (EditText)findViewById(R.id.password);    SmsManager sms = SmsManager.getDefault();    for(String s : sms.divideMessage(et1.getText().toString())){        sms.sendTextMessage(et1.getText().toString(),null,et2.getText().toString(),null,null);    }}

10linerarlayout 线性布局

<?xml version="1.0" encoding="utf-8"?><LinearLayout 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"    app:layout_behavior="@string/appbar_scrolling_view_behavior"    tools:context="com.example.liuxiaoer.sendemal.MainActivity"    tools:showIn="@layout/activity_main"    android:orientation="vertical"    android:weightSum="2"    >    <LinearLayout        android:weightSum="3"        android:layout_width="match_parent"        android:layout_height="0dp"        android:layout_weight="1"        android:background="@android:color/darker_gray"        android:orientation="horizontal"        >       <TextView           android:layout_width="0dp"           android:layout_weight="1"           android:layout_height="match_parent"           android:background="#ff0000"           />        <TextView            android:layout_width="0dp"            android:layout_weight="1"            android:layout_height="match_parent"            android:background="#00ff00"            />        <TextView            android:layout_width="0dp"            android:layout_weight="1"            android:layout_height="match_parent"            android:background="#0000ff"            />    </LinearLayout>    <LinearLayout        android:weightSum="3"        android:layout_width="match_parent"        android:layout_height="0dp"        android:layout_weight="1"        android:background="@android:color/darker_gray"        android:orientation="vertical"        >        <TextView            android:layout_width="match_parent"            android:layout_weight="1"            android:layout_height="0dp"            android:background="#ff0000"            />        <TextView            android:layout_width="match_parent"            android:layout_weight="1"            android:layout_height="0dp"            android:background="#00ff00"            />        <TextView            android:layout_width="match_parent"            android:layout_weight="1"            android:layout_height="0dp"            android:background="#0000ff"            />    </LinearLayout></LinearLayout>

常用布局方法之一;
父节点用weights sum 设置分几分
子节点用l子控件ayout weight分剩下的等分
gravity是自己内部的分布 付控件的oriengation垂直或者水平会导致子控件对应的水平或者垂直的属性失效 。 layout_gravity 是相对应付控件的位置 。都要考虑父亲的oriengation是哪个。
visibility:3中 可见 不可见占位置 gone不可见不占位置 和H5中的那个类似

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

推荐阅读更多精彩内容