文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android顶部工具栏和底部工具栏的简单实现代码

2022-06-06 10:44

关注

废话少说,直接上图,有图有真相。

这两个工具栏全是用布局来实现的。底部工具栏布局代码:

代码

代码如下:
   < xmlns:android="http://schemas.android.com/apk/res/android"
    android:background="@drawable/bottom"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    >
            <android:id="@+id/edit"
        android:text="测试"
        android:gravity="center_horizontal"
        android:drawableTop="@drawable/ic_dialog_alert"
        android:layout_alignParentLeft="true"
        android:layout_width="80dip"
        android:layout_height="wrap_content"       
        >
            <android:id="@+id/menu2"
        android:text="测试"
        android:gravity="center_horizontal"
        android:drawableTop="@drawable/ic_dialog_dialer"
        android:layout_toRightOf="@id/edit"   
        android:layout_width="80dip"
        android:layout_height="wrap_content"   
        >
            <android:id="@+id/effect"
        android:text="测试"
        android:gravity="center_horizontal"
        android:drawableTop="@drawable/ic_dialog_email"
        android:layout_toRightOf="@id/menu2"
        android:layout_width="80dip"
        android:layout_height="wrap_content"       
        >
            <android:id="@+id/menu3"
        android:text="测试"
        android:gravity="center_horizontal"
        android:drawableTop="@drawable/ic_dialog_info"
        android:layout_toRightOf="@id/effect"
        android:layout_width="80dip"
        android:layout_height="wrap_content"       
        >


顶部工具栏布局代码:

代码

代码如下:
    <xmlns:android="http://schemas.android.com/apk/res/android"
    android:background="@drawable/top"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    >
            <android:id="@+id/undo"
        android:src="@drawable/ic_dialog_map"
        android:layout_alignParentLeft="true"
        android:layout_width="80dip"
        android:layout_height="wrap_content"       
        >
            <android:id="@+id/save"
        android:src="@drawable/ic_dialog_menu_generic"
        android:layout_toRightOf="@id/undo"   
        android:layout_width="80dip"
        android:layout_height="wrap_content"   
        >
            <android:id="@+id/share"
        android:src="@drawable/ic_dialog_time"
        android:layout_toRightOf="@id/save"
        android:layout_width="80dip"
        android:layout_height="wrap_content"       
        >
            <android:id="@+id/redo"
        android:src="@drawable/ic_dialog_usb"
        android:layout_toRightOf="@id/share"
        android:layout_width="80dip"
        android:layout_height="wrap_content"       
        >

主窗口布局代码:

代码

代码如下:
    <android:layout_height="fill_parent">
        xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layout_topmenu"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    >
                <android:text="asdfasdfas"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/layout_topmenu">
   

        <xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    >

主窗口代码:

代码

代码如下:
package com.figoyu.photoqualify;


import android.app.Activity;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.view.Window;
import android.view.View.OnTouchListener;
import android.widget.ImageView;
import android.widget.TextView;


public class MainActivity extends Activity {
    TextView txt1;
    TextView edittv;
    ImageView imgbtn;
    boolean isFirst = true;
    boolean istopFirst = true;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.main);
        edittv = (TextView)findViewById(R.id.edit);
        txt1 = (TextView)findViewById(R.id.txt1);
        imgbtn = (ImageView)findViewById(R.id.undo);
        edittv.setOnTouchListener(new OnTouchListener() {           
            @Override
            public boolean onTouch(View v, MotionEvent event) {           
                if(isFirst) {
                    txt1.setText("编辑");
                    edittv.setBackgroundDrawable(getResources().getDrawable(R.drawable.item_background));
                    isFirst = false;
                }else {
                    txt1.setText("退出编辑");
                    edittv.setBackgroundDrawable(getResources().getDrawable(R.drawable.touming));
                    isFirst = true;
                }               
                return false;
            }
        });
        imgbtn.setOnTouchListener(new OnTouchListener() {
            @Override
            public boolean onTouch(View v, MotionEvent event) {
                if(istopFirst) {
                    txt1.setText("编辑");                   
                    istopFirst = false;
                }else {
                    txt1.setText("退出编辑");                   
                     istopFirst = true;
                }               
                return false;
            }
        });
    }   
}

您可能感兴趣的文章:解决android关于打开虚拟机时右侧工具栏不显示的问题详解Android(共享元素)转场动画开发实践Android中转场动画的实现与兼容性处理Android5.0之Activity的转场动画的示例Android工具栏顶出转场动画的实现方法实例


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯