作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在现有的 Android 短信应用程序中实现类似于“收件人:”功能的功能。当焦点位于文本字段上时,其正下方会显示 3 个按钮(最近、联系人和组)。
我一直在努力找出什么样的小部件可以做到这一点。我能想到的最接近的是显示一个带有 3 个按钮的弹出对话框,但这并不相同。我也考虑过下拉框,但这也不一样。
感谢您的任何建议。
编辑:Android 2.2
最佳答案
有一个像这样的布局:一个编辑文本和三个按钮:(注意水平布局定义为消失,这意味着它不会显示。
<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"</EditText>
<LinearLayout
android:id="@+id/horizontal_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/horizontal_layout"
android:visibility="gone">
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>
现在在 Activity 中有这样的东西:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.test);
EditText edit = (EditText) findViewById(R.id.teste_editText1);
final LinearLayout layout = (LinearLayout)findViewById(R.id.horizontal_layout);
edit.setOnFocusChangeListener(new OnFocusChangeListener() {
public void onFocusChange(View paramView, boolean paramBoolean) {
if (paramBoolean) {//if is focused
layout.setVisibility(View.VISIBLE);
} else {
layout.setVisibility(View.GONE);
}
}
});
}
关于Android:如何在 TextView 焦点上显示下拉选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11022124/
我是一名优秀的程序员,十分优秀!