当前位置:   article > 正文

android实用技巧系列之顶部输入框的实现_android 输入框上方布局

android 输入框上方布局

这篇文章将记录如何实用dialog实现游戏中顶部输入框。


实现顶部输入框的原理其实很简单,分为如下步骤

1、新建一个xml布局文件,布局文件中只有一个EditText控件,将EditText控件的位置放到屏幕的顶部。

2、新建一个逻辑处理文件,专门用于接收EditTexxt输入的处理。

代码如下

1、布局文件dialog_top_input.xml

  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@drawable/transparent"
  6. android:orientation="vertical" >
  7. <RelativeLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:layout_alignParentTop="true"
  11. android:layout_centerHorizontal="true"
  12. android:layout_marginTop="10dp" >
  13. <EditText
  14. android:id="@+id/txt_content"
  15. android:layout_width="match_parent"
  16. android:layout_height="40dp"
  17. android:layout_alignParentTop="true"
  18. android:background="@drawable/input_bg"
  19. android:ems="10"
  20. andr
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/558223
推荐阅读
相关标签
  

闽ICP备14008679号