安卓使用DrawerLayout实现左右划效果(抽屉动画)以及简单布局

本文介绍了如何在安卓应用中使用DrawerLayout实现左右滑动效果,左侧界面结合线性布局和表格布局,右侧展示图片。详细讲解了activity_main.xml的代码结构,包括文本框、输入框和按钮的布局,并提供了完整的XML代码示例。
摘要由CSDN通过智能技术生成

左侧界面线性布局和表格布局结合。每一行是一个LinearLayout,每个LinearLayout包含一个TableLayout,每个TableLayout包含3个文本框,文本框的宽度由每个文本框的layout_weight按比例控制。

右侧界面插入一张图片,方法同上。使用ImageView,background属性会根据ImageView的大小进行伸缩。若把background改成src则会以原图大小显示

以下是activity_main.xml完整代码:

<?xml version="1.0" encoding="utf-8"?>

<android.support.constraint.ConstraintLayout 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”

tools:context=".MainActivity">

<android.support.v4.widget.DrawerLayout

android:layout_width=“match_parent”

android:layout_height=“match_parent”>

<RelativeLayout

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:background="#E6E6E6"

android:orientation=“vertical”>

<ImageView

android:id="@+id/iv"

android:layout_width=“70dp”

android:layout_height=“70dp”

android:layout_centerHorizontal=“true”

android:layout_marginTop=“40dp”

android:background="@drawable/head"/>

<LinearLayout

android:id="@+id/ll_number"

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:layout_below="@id/iv"

android:layout_centerVertical=“true”

android:layout_marginBottom=

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值