可以通过一个小的Button? 来控制你的其他Button 的 显示与隐藏。
我们先用一个小的按钮放到屏幕的左上方,然后通过点击它来实现toggle的功能。
你的其他按钮可以自己定义一个滑动的或者不滑动的,我的定义如下:
<HorizontalScrollView android:layout_width="wrap_content"??? //水平滑动
android:layout_height="wrap_content">
<LinearLayout android:orientation="horizontal"
android:id="@+id/titleBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Spinner android:id="@+id/mySpinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:tag="选择城市">
</Spinner>
<Button android:id="@+id/queryRoute"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="查询路线">
</Button>
<Button android:id="@+id/reset"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="重置地图">
</Button>
<Button android:id="@+id/set"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="设置参数">
</Button>
<Spinner android:id="@+id/choosemethod"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button android:id="@+id/showpic"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="查询结果图片" />???
</LinearLayout>
? </HorizontalScrollView>
然后在定义一个小的Button,<Button android:id="@+id/toggleButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/toggle"
android:gravity="top"
/>?? 背景图片可以自己定义,如:
这样的。
然后再*.java 文件中这样做:
Button toggleButton=(Button)findViewById(R.id.toggleButton);
toggleButton.setOnClickListener(new Button.OnClickListener()
{
public void onClick(View v) {
// TODO Auto-generated method stub
if(linear.getVisibility()==View.GONE) //查看现在隐身与否
linear.setVisibility(View.VISIBLE);
else
linear.setVisibility(View.GONE);
}??? ???
});
看看效果吧:
开始的时候我设置为隐藏的,通过
final LinearLayout linear=(LinearLayout)findViewById(R.id.titleBar);
linear.setVisibility(View.GONE);? 可以设置。
然后看看点击toggleButton 后的效果:
详细解决方案
android button动态暗藏
热度:42 发布时间:2016-05-01 15:59:53.0
相关解决方案
- android 读取byte[]中的元素解决方案
- android 标题栏兑现方式
- android 中Activity向BroadcastReceiver发送数据,该怎么解决
- Android 4.0 为什么模拟器老是提示小弟我谷歌拼音输入法已停止
- android:getSharedPreferences() 这是哪个类的方法解决思路
- android 怎么判断一个程序是否联网
- android 大量数据按周分组,该如何解决
- android RadioButton如何设置默认选中
- ksoap2-android-这个包,连接webService怎么设置超时
- android 怎么重新设置锚点
- android UI界面设计解决方案
- android 图片对象获取的有关问题
- android 怎么调用淘宝支付宝接口
- Android 沿袭InputMethodService自定义输入法
- android 关于服务连接的疑义
- android 两个activity如何通信
- android 怎么实现对view的放大和缩小
- android 教程解决方法
- android ID,该如何处理
- 准备复习2-3个月,看java+android,请问有经验者,怎么看效果最好》
- android UI线程与AsyncTask的有关问题
- android(java)中的java.net能不能和c#的system.net.sockets进行tcp通信,该如何解决
- android ListView 中的onItemClick Intent 没法跳转
- android(java) 中文乱码的有关问题
- c#c++,android,ios(iphone),php,java视屏课程 散分
- Button OnClientClick中设disabled=true后,还会不会施行OnClick中的代码
- 部类“Button”的控件“Button2”必须放在具有 runat=server 的窗体标记内
- 请问一个后台获取input type="button"的value的有关问题
- HTML控件<button>的点击事件如何用
- 请问一个jquery 实现input type="button"的背景图片变换