android 开发 ,控制整个屏幕的点击功能屏幕失去焦点功能问题: 求思路啊~~

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 开发 ,控制整个屏幕的点击功能屏幕失去焦点功能问题: 求思路啊~~相关的知识,希望对你有一定的参考价值。

写了个android程序,最近在真机测试的时候,希望实现点击手机程序里的图标的时候,就能就能锁定 android手机屏幕(其它地方变灰),再点击一下又恢复正常屏幕状态,不知道这个大体上该怎么实现??
我用一个额外的顶置的view实现了…

参考技术A button.setEnabled(false),单独的控件可以这样设置变成灰色和不可点击状态,你可以用ImageButton放图标,通过它的监听事件去修改其他控件的setEnabled值。 参考技术B 可以使用Dialog试试。Dialog里面就显示当前的额状态就可以了,这样是不是就可以了。 参考技术C google

如何从屏幕底部向上滑出一个view-Android开发问答

从屏幕底部向上滑出一个view的方式,主要是使用TranslateAnimation,这个类,可以绑定一个控件,在y轴方向,滑出一段高度,如下代码:

package com.txlong;  
  
import android.app.Activity;  
import android.os.Bundle;  
import android.view.View;  
import android.view.animation.Animation;  
import android.view.animation.AnimationUtils;  
import android.view.animation.TranslateAnimation;  
import android.widget.Button;  
import android.widget.TextView;  
  
public class AndroidAnimationActivity extends Activity   
  
    private Animation myAnimation_Translate;  
  
    @Override  
    public void onCreate(Bundle savedInstanceState)   
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.main);  
  
        final TextView tv = (TextView) findViewById(R.id.tv);  
        Button btn = (Button) findViewById(R.id.btn);  
  
        btn.setOnClickListener(new View.OnClickListener()   
            @Override  
            public void onClick(View v)   
                tv.setVisibility(View.VISIBLE);  
                myAnimation_Translate = new TranslateAnimation(  
                        Animation.RELATIVE_TO_PARENT, -1,  
                        Animation.RELATIVE_TO_PARENT, 0,  
                        Animation.RELATIVE_TO_PARENT, 0,  
                        Animation.RELATIVE_TO_PARENT, 0);  
                myAnimation_Translate.setDuration(1000);  
                myAnimation_Translate.setInterpolator(AnimationUtils  
                        .loadInterpolator(AndroidAnimationActivity.this,  
                                android.R.anim.accelerate_decelerate_interpolator));  
                tv.startAnimation(myAnimation_Translate);  
              
        );  
      
参考技术A 用animation
我有个示例你可以看一下
anim/footer_appear.xml
1.<set xmlns:android="schemas.android.com/apk/res/android" >

2. <translate

3. android:fromYDelta="+10%p"

4. android:toYDelta="0"

5. android:duration="300" />

6.</set>
复制代码
anim/footer_disappear.xml
1.<set xmlns:android="schemas.android.com/apk/res/android" >

2. <translate

3. android:fromYDelta="0"

4. android:toYDelta="+10%p"

5. android:duration="300" />

6.</set>
复制代码
1.popMenu.startAnimation(AnimationUtils.loadAnimation(this, R.anim.footer_appear));

2.popMenu.startAnimation(AnimationUtils.loadAnimation(this, R.anim.footer_disappear));

3.//popMenu是自定义的界面
复制代码

你要的demo
当点击下面的Button时 上面的菜单才出现。

以上是关于android 开发 ,控制整个屏幕的点击功能屏幕失去焦点功能问题: 求思路啊~~的主要内容,如果未能解决你的问题,请参考以下文章

android怎么把一个小图片布满整个屏幕

如何从屏幕底部向上滑出一个view-Android开发问答

Android测试的坑——屏幕翻转

具有标签栏控制器的淡出和淡出整个屏幕

android开发xml中如何设置背景图才能填充整个屏幕?代码如下

eclipse中,开发的android程序背景图怎么设置可以让它布满整个屏幕?就是图片下面那一横白