java隐藏标题_Android实现标题显示隐藏功能

本文实例尝试模仿实现Android标题显示隐藏功能,通过给listview设置 mListView.setOnTouchListener 监听 重写ontouch方法 监听手指一动的坐标,当超过ViewConfiguration.get(this).getScaledTouchSlop(); toubar的高度 .当向上滑动超过这个高度显示touba 向下滑动隐藏。

效果图:

701963b206ec5759c8953ab5d57777ab.gif

package com.example.hidetitlebardemo;

import android.animation.Animator;

import android.animation.ObjectAnimator;

import android.app.Activity;

import android.os.Bundle;

import android.view.MotionEvent;

import android.view.View;

import android.view.Menu;

import android.view.MenuItem;

import android.view.ViewConfiguration;

import android.view.ViewGroup;

import android.view.Window;

import android.widget.AbsListView;

import android.widget.ListView;

import android.widget.RelativeLayout;

import android.widget.SimpleAdapter;

import java.util.ArrayList;

import java.util.HashMap;

import java.util.List;

import java.util.Map;

public class MainActivity extends Activity {

private ListView mListView;

private RelativeLayout mTitle;

private int mTouchSlop;

private SimpleAdapter mAdapter;

private float mFirstY;

private float mCurrentY;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

requestWindowFeature(Window.FEATURE_NO_TITLE);

setContentView(R.layout.activity_main);

mTouchSlop = ViewConfiguration.get(this).getScaledTouchSlop();

initViews();

showHideTitleBar(true);

}

private void initViews() {

mListView = (ListView) findViewById(R.id.id_lv);

mTitle = (RelativeLayout) findViewById(R.id.id_title);

mAdapter = new SimpleAdapter(this, getData(),

R.layout.lv_item,

new String[]{"info"},

new int[]{R.id.num_info});

mListView.setAdapter(mAdapter);

mListView.setOnTouchListener(new View.OnTouchListener() {

@Override

public boolean onTouch(View v, MotionEvent event) {

switch (event.getAction()) {

case MotionEvent.ACTION_DOWN:

mFirstY = event.getY();

break;

case MotionEvent.ACTION_MOVE:

mCurrentY = event.getY();

if (mCurrentY - mFirstY > mTouchSlop) {

System.out.println("mtouchislop:" + mTouchSlop);

// 下滑 显示titleBar

showHideTitleBar(true);

} else if (mFirstY - mCurrentY > mTouchSlop) {

// 上滑 隐藏titleBar

showHideTitleBar(false);

}

break;

case MotionEvent.ACTION_UP:

break;

}

return false;

}

});

}

private Animator mAnimatorTitle;

private Animator mAnimatorContent;

private void showHideTitleBar(boolean tag) {

if (mAnimatorTitle != null && mAnimatorTitle.isRunning()) {

mAnimatorTitle.cancel();

}

if (mAnimatorContent != null && mAnimatorContent.isRunning()) {

mAnimatorContent.cancel();

}

if (tag) {

mAnimatorTitle = ObjectAnimator.ofFloat(mTitle, "translationY", mTitle.getTranslationY(), 0);

mAnimatorContent = ObjectAnimator.ofFloat(mListView, "translationY", mListView.getTranslationY(), getResources().getDimension(R.dimen.title_height));

} else {

mAnimatorTitle = ObjectAnimator.ofFloat(mTitle, "translationY", mTitle.getTranslationY(), -mTitle.getHeight());

mAnimatorContent = ObjectAnimator.ofFloat(mListView, "translationY", mListView.getTranslationY(),0);

}

mAnimatorTitle.start();

mAnimatorContent.start();

}

private List> getData() {

List> data = new ArrayList<>();

for (int i = 'A'; i < 'z'; i++) {

Map map = new HashMap<>();

map.put("info", (char) i);

data.add(map);

}

return data;

}

}

布局

android:layout_height="match_parent"

android:orientation="vertical"

xmlns:android="http://schemas.android.com/apk/res/android">

android:id="@+id/id_title"

android:background="#00ccff"

android:layout_width="match_parent"

android:layout_height="40dp">

android:text="Ace "

android:layout_centerInParent="true"

android:textSize="22sp"

android:textColor="#ffffff"

android:layout_width="wrap_content"

android:layout_height="wrap_content" />

android:id="@+id/id_lv"

android:layout_width="match_parent"

android:layout_height="match_parent"/>

希望本文所述对大家学习Android软件编程有所帮助。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值