- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
因此,一切都在智能手机上运行良好。但是,在平板电脑上,我的 ListView
旨在显示为左侧导航元素,当前激活的项目在详细信息 fragment 中展开显示。这也很管用。但是,ListFragment
的激活项不会显示为选中状态。我已将 android:choiceMode
设置为 singleChoice
。我激活了正确的选择器,当按下一个项目时背景可绘制对象出现。选择器具有 android:state_activated="true"
的正确项。我在我的 styles.xml 文件中指定了 android:activatedBackgroundIndicator
。当我在 onListItemClick
中记录 listView.getCheckedItemCount()
的输出时,它会如我所料返回 1
。
曾几何时,几周前,在我真正开始连接我的数据源之前,在我开始使用一个自定义 ListView 项目布局。然后在此过程中的某个地方,我做了一些使激活的项目显示不正确的事情,但我不确定它是什么。
selectable_background.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android"
android:exitFadeDuration="@android:integer/config_mediumAnimTime" >
<item android:state_pressed="false" android:state_focused="true" android:drawable="@drawable/list_focused" />
<item android:state_pressed="true" android:drawable="@drawable/pressed_background" />
<!-- selected -->
<item android:state_activated="true" android:drawable="@drawable/pressed_background" />
<item android:state_checked="true" android:drawable="@drawable/pressed_background" /> <!-- paranoia -->
<item android:state_selected="true" android:drawable="@drawable/pressed_background" /> <!-- paranoia -->
<!-- default -->
<item android:drawable="@android:color/transparent" />
</selector>
fragment 列表.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@id/android:list"
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:choiceMode="singleChoice"
android:listSelector="@drawable/selectable_background" >
</ListView>
<TextView android:id="@id/android:empty"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="16dp"
android:paddingBottom="16dp"
android:paddingLeft="12dp"
android:paddingRight="12dp"
android:text="@string/empty_list" />
</LinearLayout>
list_item.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ImageView android:id="@+id/item_image"
android:layout_width="63dp"
android:layout_height="63dp"
android:contentDescription="@string/list_image"
android:src="@drawable/ic_thumbnail_placeholder"
android:background="#f0f0f0" />
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/item_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceListItemSmall"
android:gravity="center_vertical"
android:paddingLeft="?android:attr/listPreferredItemPaddingLeft"
android:paddingRight="?android:attr/listPreferredItemPaddingRight"
android:minHeight="?android:attr/listPreferredItemHeightSmall" />
</LinearLayout>
MyListFragment.java
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.getActivity().getLoaderManager().initLoader(ALL_ITEMS_LOADER, null, this);
listAdapter = new SimpleCursorAdapter(
this.getActivity(),
R.layout.list_item,
null,
new String[] { Item.NAME },
new int[] { R.id.item_name },
CursorAdapter.FLAG_REGISTER_CONTENT_OBSERVER
);
this.setListAdapter(listAdapter);
}
@Override
public Loader<Cursor> onCreateLoader(int i, Bundle bundle) {
Uri queryUri;
switch (i) {
case ALL_ITEMS_LOADER:
queryUri = Item.CONTENT_URI;
return new CursorLoader(this.getActivity(), queryUri, null, null, null, null);
default:
throw new IllegalArgumentException("Unknown loader ID: " + i);
}
}
@Override
public void onLoadFinished(Loader<Cursor> cursorLoader, Cursor cursor) {
if (listAdapter == null) {
throw new IllegalStateException("List adapter is missing!");
} else {
Log.d(TAG, "Load finished. Cursor swapped.");
listAdapter.swapCursor(cursor);
}
}
更新:
我还尝试将 SimpleCursorAdapter
替换为我之前使用过的 ArrayAdapter
,但没有成功:
listAdapter = new ArrayAdapter<String>(
this.getActivity(),
R.layout.list_item,
R.id.item_name,
new String[] {"1", "2", "3"}
);
更新 2:
啊哈!一个线索!
listAdapter = new ArrayAdapter<String>(
this.getActivity(),
android.R.layout.simple_list_item_activated_1,
android.R.id.text1,
new String[] {"1", "2", "3"}
);
这行得通。但是由于我实际上需要使用自己的布局,所以它并没有解决我自己的问题。 R.layout.list_item
和 android.R.layout.simple_list_item_activated_1
有什么不同?
最佳答案
Once upon a time, a few weeks ago, I even had this all working exactly as intended ... before I started using a custom list view item layout.
我的猜测是您之前使用的是 simple_list_item_activated_x
布局之一,它在其背景可绘制对象定义中定义了激活的可绘制对象。框架所做的一件事是将按下的逻辑与激活的逻辑分开(前者是列表选择器的一部分,而后者在列表项上),但不需要那样做,你可以将它们全部放在列表项背景中并完全禁用选择器。
我建议将自定义可绘制对象放置为每个列表项的背景,而不是列表选择器; activated 是应用于每个单独项目 View 的状态。然后你可以设置 android:listSelector="@null"
因为你在某些状态下有透明背景并且你不希望默认选择器显示出来。
关于android - ListView 项目未显示为已激活,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12202705/
我目前正在使用发现的重力脚本 here为了在我的网页上创建重力效果,我正在本地开发 atm。 我的问题是,重力效果的激活似乎是在鼠标移动时进行的,而我需要它在文档准备好时才触发。 google.cod
我正在尝试关注 Railsbridge Intallfest 并尝试将我的第一个 Rails 应用程序部署到 heroku。我不断收到以下错误消息: Gem::LoadError: Specified
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
Home-tab 是默认选中的,但是它的颜色是灰色的:( Home Bla Contact
我没有得到它的工作,我不知道为什么......遗憾的是其他问题 + 答案没有帮助。 测试设备: iPhone 6 iPad 2 相关代码: override func viewWillTransiti
我试图加载一个 View ,就像用户已经按下 UISearchBar 一样。我希望 SearchController 加载顶部的 UISearchBar 以及取消按钮。 我已经试过了: func ac
试图在 if whiteDotDist < centerRadius - whiteDotRadius 时获取代码执行它下面的所有代码都是事件的,并且当它下面的代码被执行时它再次变为非事件状态直到if
我正在使用 anaconda python。所以每次,在我的 mac 终端中,我输入终端命令: source /Users/mylaptop/anaconda/bin/activate /Users/
在我的 Angular 项目中,我有这种代码: this.swUpdate.available.subscribe(() => { ... }); 它工作正常,但给了我关于 activated 被
我想弄清楚 Julia 包是如何工作的,因为我喜欢容器化环境。我真的很挣扎。 在 python 中,我会做类似 conda create env --name ds 的事情创建环境然后安装容器化包我会
我的宏中有一些代码如下 ChDir File_pth Workbooks.Open filename:= File_pth & "\" & open_tkt Workbooks.Open filena
长话短说,我有两张纸,一张是“原始数据”,另一张是“结果”。我试图让结果表从“原始数据”表的每第七行中提取文本或数字,因此“结果”中的 A1 将是原始数据中的 A1,“结果”中的 A2 将是“原始数据
我不知道如何做到这一点,或者我是否可以做到这一点。我有一个 jQuery UI Accordion,多个部分,每个部分包含多个 anchor 标记,每个 anchor 标记都有一个唯一的字符串 id。
我不敢相信我还没有找到任何关于此的文档,但我想知道如何命令键盘激活并接收来自它的输入。我可以找到在编辑文本字段时操作弹出键盘的所有示例。谢谢 最佳答案 您还可以使用 UIKeyInput 协议(pro
我正在尝试为我的 Electron 应用程序生成NSIS安装程序的日志。为此,我创建了一个文件'logging.nsh'来定义LogSet和LogText宏。 以下是logging.nsh文件的代码:
几周前,我开始使用 typescript 和 knockoutJS,我有一个具体的问题,但我有解决方案,它太丑了,我无法忍受,但无法从中得到任何更好的东西,有太多代码需要粘贴,但我会尽力描述我的问题:
当我尝试激活我的虚拟环境时收到此错误即源 ~/edu-venv/bin/activate -bash: /home/vagrant/edu-venv/bin/activate: No such fil
要创建触发器,似乎必须发布它才能生效。但是发布需要对“协作”分支进行 PR,这意味着我们甚至在测试触发器是否实际工作之前就必须创建一个 PR,并且还必须创建多个后续 PR,直到我们获得正确的触发器。
我是最近的 IntelliJ Idea 用户,我不知道如何启用 Hibernate。当我右键单击我的项目时,Hibernate 不会出现在“添加框架支持”菜单中(实际上我唯一可以选择的技术是 Groo
要创建触发器,似乎必须发布它才能生效。但是发布需要对“协作”分支进行 PR,这意味着我们甚至在测试触发器是否实际工作之前就必须创建一个 PR,并且还必须创建多个后续 PR,直到我们获得正确的触发器。
我是一名优秀的程序员,十分优秀!