IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Android 布局当按键使用 -> 正文阅读

[移动开发]Android 布局当按键使用

布局也是可以当做是按键使用的

<FrameLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="1px"
                app:backgroundColor="@color/white">//常规的是一个FrameLayout里面摆布局,问题是,FrameLayout只适应SuperButton的高度,不适应FlexboxLayout的高度,那解决方法就不要Button了,Layout也是可以点击的

                <com.github.widget.SuperButton
                    android:id="@+id/btn_label"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:minHeight="55dp"
                    android:gravity="start|center_vertical"
                    android:paddingLeft="16dp"
                    android:paddingRight="16dp"
                    android:text="@string/self_image"
                    android:textColor="#333333"
                    android:textSize="14sp"
                    app:backgroundColor="@color/white"
                    app:backgroundColorPressed="#10000000"
                    android:layout_marginStart="12dp"
                    android:layout_marginEnd="12dp"/>

                <com.google.android.flexbox.FlexboxLayout
                    android:id="@+id/label_layout"
                    android:layout_width="250dp"
                    android:layout_height="wrap_content"
                    android:orientation="horizontal"
                    android:layout_gravity="end|center_vertical"
                    android:layout_marginEnd="35dp"
                    app:flexWrap="wrap"
                    app:justifyContent="flex_end"
                    app:backgroundColor="@color/white"/>

                <androidx.appcompat.widget.AppCompatTextView
                    android:id="@+id/tv_label1"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="end|center_vertical"
                    android:layout_marginEnd="28dp"
                    android:clickable="false"
                    android:drawableEnd="@mipmap/back"
                    android:drawablePadding="12dp"
                    android:ellipsize="end"
                    android:lines="1"
                    android:maxWidth="230dp"
                    android:textColor="@color/white"
                    android:textSize="13sp"
                    app:drawableEndHeight="12dp"
                    tool:text="name" />

            </FrameLayout>

  <com.github.widget.SuperLinearLayout
                android:id="@+id/ll_label"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="1px"
                android:minHeight="55dp"
                android:layout_marginStart="12dp"
                android:layout_marginEnd="12dp"
                android:orientation="horizontal"
                app:backgroundColor="@color/white"
                app:backgroundColorPressed="#10000000">//这里的LinearLayout就充当button的作用了,就可以省略button,而且也可以适应其他控件的高度了

                <androidx.appcompat.widget.AppCompatTextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="start|center_vertical"
                    android:layout_marginEnd="12dp"
                    android:paddingLeft="16dp"
                    android:paddingRight="16dp"
                    android:text="@string/self_image"
                    android:textColor="#333333"
                    android:textSize="14sp" />

                <com.google.android.flexbox.FlexboxLayout
                    android:id="@+id/label_layout"
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_vertical"
                    android:layout_weight="1"
                    app:flexWrap="wrap"
                    app:justifyContent="flex_end"
                    android:layout_marginBottom="3dp"/>

                <androidx.appcompat.widget.AppCompatImageView
                    android:layout_width="wrap_content"
                    android:layout_height="12dp"
                    android:layout_gravity="end|center_vertical"
                    android:layout_marginStart="12dp"
                    android:layout_marginEnd="16dp"
                    android:adjustViewBounds="true"
                    android:scaleType="fitXY"
                    android:src="@mipmap/ic_into" />

            </com.github.widget.SuperLinearLayout>

直接使用findViewById(R.id.ll_label).setOnClickListener即可
在这里插入图片描述

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-02-26 11:42:07  更:2022-02-26 11:43:31 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 15:31:56-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码