Android Studio布局模板一之FloatButton和Toolbar
Posted 田瞩
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android Studio布局模板一之FloatButton和Toolbar相关的知识,希望对你有一定的参考价值。
从今天开始就学android Studio 推荐模板 ,今天发的本应该昨天发的,可同学刚睡醒连变压插座都没查就直接插上了电饭锅,然后过载了停了一天电这大星期天的宿舍没电。。。。
今天下午来电了,瞅了瞅加上昨天看的皮毛,就按照模板敲出来了,又加了点东西,还不错。
忘了一件事添加上 添加 compile 'com.android.support:design:23.2.1'
代码部分主要分几大块:
1.content_layout.xml 这里面就是主要的显示界面了,就是新建后的Hello World 了。但是这个布局文件并不是Activity中创建时的关联的布局文件,而是将这个布局文件嵌到另一个布局文件。
2.activityu_layout.xml这个文件就是被嵌的布局文件,这个文件就是主要的Toolbar控件和FloatingActionButton控件的布局了,这里面的布局结构很重要。
3.menu.xml这个文件就是菜单文件了,主要是为嵌到Toolbar栏上的菜单。
4.MainActivity.java 这个就是实现各种监听的。
一、content_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:showIn="@layout/activity_main">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textSize="30dp"
android:text="@string/hejingzhoublog"
android:id="@+id/textView" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TestButton"
android:textAllCaps="false"
android:id="@+id/button"
android:layout_alignTop="@+id/textView"
android:layout_centerHorizontal="true"
android:layout_marginTop="197dp" />
</RelativeLayout>
以上是关于Android Studio布局模板一之FloatButton和Toolbar的主要内容,如果未能解决你的问题,请参考以下文章