问题标签 [android-ui]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - 单击按钮时在父布局中显示动画菜单
我有一个按钮。当我单击该按钮时,我想在该父布局的顶部显示一个动画菜单,其中包括一个编辑文本和一个按钮。我怎样才能做到这一点?
android - android - UI 类似于向下滑动通知栏
我想开发一个与通知面板相同的动画面板。我的意思是说通知面板是一个很酷的控件,您可以在其中抓住并向下滑动通知栏并查看所有通知。
实际上,我有 2 个 UI,第一个应该在顶部显示 Button,当用户单击该按钮时,带有 listview 项目的第二个 UI 应该与通知面板一样向下滑动,并且当用户单击或拖动第二个 UI 时再次滑动顶部,然后第二个 UI 应该变得不可见。我希望我能明确我的问题。
从 开始Christian's answer
,我正在尝试使用将显示选项列表的滑动抽屉。我需要它来扩展页面上的当前 ListView。
因此,如果有人知道如何通过向下滑动动画来实现这样的布局或 UI,请分享。
请建议如何使用这种控件或布局进行构建?任何想法或建议
谢谢
android - 如何从 Java 向 Android 的主菜单网格动态添加新图标?
我有一个应用程序,我希望在启动器的主菜单网格中有多个图标,但仅在某些条件下。例如,我想显示图标 A 和图标 B,但前提是手机运行 Android 2.2,因为图标 B 使用 Froyo 功能,所以我不希望图标 B 出现在 Froyo 之前的设备上。
Java中有没有办法以编程方式添加主菜单图标?我不希望它在清单文件中,因为这在运行时不灵活......至少据我所知不是。这将允许我检查应用程序中的某些功能、API、用户偏好或标志。
java - Android 中管理视图重用的代码在哪里?
View
Android 中管理重用的源代码在哪里?我可以想到这个过程的三个不同部分,但可能还有更多:
- 确定 a
View
是否有资格重复使用的逻辑 View
管理可重复使用的 s池的代码- 从池中删除可重用
View
并重置其属性值以表示逻辑上不同的代码View
编辑:博客文章为 Android 开发应用程序 – 陷阱和怪癖给出了以下示例:
该
showDialog
方法将显示答案对话框,该对话框需要知道用户打开了什么问题。问题是,当对话框打开时,传递给的视图onItemClick
可能已被重用,因此activeElement
将不再指向用户首先单击以打开对话框的元素!
android - 如何在相对布局中添加滚动条?
我是 Android 应用程序开发的新手。现在我正在设计一个应用程序,因为我有一个Activity
包含一些内容的应用程序,但这些内容更多,所以内容不在屏幕上。现在我想向用户展示该内容,但我不知道如何将滚动条保持到Activity
.
如何使用滚动条向最终用户显示全部内容RelativeLayout
?
android - 如何显示Android“联系人窗格”?
我正在开发我的第一个 Android 应用程序,想知道我可以打什么电话来显示这个“联系人窗格”:
当然,我指的是带有联系人照片、姓名和下方操作图标的小窗格。
作为一个相关的问题......这个小弹出窗口的正式名称是什么?
android - AdapterView 中的重叠问题
我正在使用AdapterView
自定义列表。但我的 Xml 布局不仅包含该列表。它还有一些其他元素,如顶部和底部的 TextBox、标签、ImageButton。因此,当我向上滚动它并开始动画时,它还会在该顶部部分(其中包含 ImageButton 和其他东西)上绘制元素。那么有人可以告诉我如何删除它吗?另一个问题是它没有滚动条。有人可以告诉我如何在其中添加滚动条吗?
android - android XML UI 布局的参考在哪里?
我正在寻找通常随 android UI 提供的各种 XML 布局属性设置的所有可能选项的规范或参考。谷歌似乎擅长掩埋它。这类似于这个问题,但仍然没有得到有效的回答。
例如对于 TextView layout_width 定义,我可以使用哪些选项?必须有一个完整的定义公布...... somehwere....
java - How can I access an Activity from another class globally in an Android app?
I have an Android app with 2 activities defined below. In the MainMenu.oncreate()
, I have an AlarmManager
kicked off to periodically query a server for data and update the text of a button in the PlayBack
UI. Can I access the Playback
object via a global reference or do I need to kick off the AlarmManager
in the Playback.oncreate()
instead so I can pass a reference to it? If so, should this be done with a BroadcastReceiver
and Intent
as I'm doing in the MainMenu
shown below?
android - Android - progress dialog does not close
I have a ListActivity class, and when any item on the list is clicked, a new activity is displayed. The new activity takes time to load, so i would like the users to know that there is something happening (in the form of a progress dialog)
So, in order to do this, i implemented Runnable in my class like this -
Initially, when i click, and the new activity is being loaded, the progress dialog works nicely, but when i close the previous activity (to get back to this list) the progress dialog is still running. I want the progress dialog to show up only for the time the new activity is being started.
Can someone please guide me on how to do this correctly.