- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
首先我要说我已经详细阅读了关于 SO 的几乎所有问题,我可以找到与自定义可检查列表项和选择器相关的问题。他们中的许多人都有类似的问题,但没有一个答案能解决我的问题。
在我的应用中,我展示了一个自定义列表 Activity 。创建后,它会从调用它的 Intent 中检索一组静态数据,并将该数据传递给它的自定义数组适配器。每个列表项都是一个简单的 RelativeLayout 实现了 Checkable界面。默认情况下,如果您单击其中一项,则会显示一个新 Activity ,其中显示有关所选联系人的详细信息。但是,如果长按列表中的项目,则会启动 ActionMode。此时单击列表中的项目不会显示详细信息 Activity ,它只是将项目设置为已选中。然后,如果用户选择了其中一项操作模式项,它将对选中的项执行操作。
需要了解的重要一点是,在两种选择“模式”中,单击列表项会将其设置为选中状态。
我上面描述的所有内容都完美无缺。我的唯一问题与列表项的背景有关,当它们被设置为选中时,即使使用默认选择器也没有突出显示。
我想做的是有两个选择器:每个选择器一个。在第一种情况下,选中项目时背景不会改变,而在第二种情况下会改变。我试过实现自定义选择器,但即使在那些 state_checked 中也被忽略了!选择器的其他部分工作正常,但不是 state_checked。
我的 CheckableListItem 实现结合了许多不同示例的想法,所以如果我做错了什么,或者如果有更好的方法请告诉我!
注意:有趣的一点是,如果我将 results_list_item.xml 中列表项的背景设置为我的选择器,而不是 ListView 的 listSelector 属性,背景会 选中项目时更改。但是,这样做会导致我的选择器中的长按转换不起作用。
ResultsActivity.java:
public class ResultsActivity extends ListActivity implements OnItemLongClickListener {
private ListView listView; // Reference to the list belonging to this activity
private ActionMode mActionMode; // Reference to the action mode that can be started
private boolean selectionMode; // Detail mode or check mode
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_results);
// When the home icon is pressed, go back
ActionBar actionBar = getActionBar();
actionBar.setDisplayHomeAsUpEnabled(true);
// Get a reference to the list
listView = getListView();
// Initially in detail mode
selectionMode = true;
// Get the contacts from the intent data and pass them to the contact adapter
@SuppressWarnings("unchecked")
ArrayList<Contact> results = ((ArrayList<Contact>)getIntent().getSerializableExtra("results"));
Contact[] contacts = new Contact[results.size()];
ContactArrayAdapter adapter = new ContactArrayAdapter(this, results.toArray(contacts));
setListAdapter(adapter);
// We will decide what happens when an item is long-clicked
listView.setOnItemLongClickListener(this);
}
/**
* If we are in detail mode, when an item in the list is clicked
* create an instance of the detail activity and pass it the
* chosen contact
*/
public void onListItemClick(ListView l, View v, int position, long id) {
if (selectionMode) {
Intent displayContact = new Intent(this, ContactActivity.class);
displayContact.putExtra("contact", (Contact)l.getAdapter().getItem(position));
startActivity(displayContact);
}
}
public boolean onCreateOptionsMenu(Menu menu) {
return super.onCreateOptionsMenu(menu);
}
/**
* If the home button is pressed, go back to the
* search activity
*/
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
Intent intent = new Intent(this, SearchActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);
return true;
default:
return super.onOptionsItemSelected(item);
}
}
/**
* When an item is long-pressed, switch selection modes
* and start the action mode
*/
public boolean onItemLongClick(AdapterView<?> adapter, View view, int position, long i) {
if (mActionMode != null)
return false;
if (selectionMode) {
toggleSelectionMode();
listView.startActionMode(new ListActionMode(this, getListView()));
return true;
}
return false;
}
/**
* Clear the list's checked items and switch selection modes
*/
public void toggleSelectionMode() {
listView.clearChoices();
((ContactArrayAdapter)listView.getAdapter()).notifyDataSetChanged();
if (selectionMode) {
selectionMode = false;
} else {
selectionMode = true;
}
}
}
activity_results.xml:
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:choiceMode="multipleChoice"
android:listSelector="@drawable/list_selector" />
list_selector.xml:
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_pressed="true" android:drawable="@drawable/blue_transition" />
<item android:state_checked="true" android:drawable="@drawable/blue" />
</selector>
双线阵列适配器:
public abstract class TwoLineArrayAdapter extends ArrayAdapter<Contact> {
private int mListItemLayoutResId;
public TwoLineArrayAdapter(Context context, Contact[] results) {
this(context, R.layout.results_list_item, results);
}
public TwoLineArrayAdapter(Context context, int listItemLayoutResourceId, Contact[] results) {
super(context, listItemLayoutResourceId, results);
mListItemLayoutResId = listItemLayoutResourceId;
}
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater)getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View listItemView = convertView;
if (convertView == null) {
listItemView = inflater.inflate(mListItemLayoutResId, parent, false);
}
// Get the text views within the layout
TextView lineOneView = (TextView)listItemView.findViewById(R.id.results_list_item_textview1);
TextView lineTwoView = (TextView)listItemView.findViewById(R.id.results_list_item_textview2);
Contact c = (Contact)getItem(position);
lineOneView.setText(lineOneText(c));
lineTwoView.setText(lineTwoText(c));
return listItemView;
}
public abstract String lineOneText(Contact c);
public abstract String lineTwoText(Contact c);
}
ContactArrayAdapter:
public class ContactArrayAdapter extends TwoLineArrayAdapter {
public ContactArrayAdapter(Context context, Contact[] contacts) {
super(context, contacts);
}
public String lineOneText(Contact c) {
return (c.getLastName() + ", " + c.getFirstName());
}
public String lineTwoText(Contact c) {
return c.getDepartment();
}
}
CheckableListItem.java:
public class CheckableListItem extends RelativeLayout implements Checkable {
private boolean isChecked;
private List<Checkable> checkableViews;
public CheckableListItem(Context context, AttributeSet attrs,
int defStyle) {
super(context, attrs, defStyle);
initialise(attrs);
}
public CheckableListItem(Context context, AttributeSet attrs) {
super(context, attrs);
initialise(attrs);
}
public CheckableListItem(Context context, int checkableId) {
super(context);
initialise(null);
}
private void initialise(AttributeSet attrs) {
this.isChecked = false;
this.checkableViews = new ArrayList<Checkable>(5);
}
public boolean isChecked() {
return isChecked;
}
public void setChecked(boolean check) {
isChecked = check;
for (Checkable c : checkableViews) {
c.setChecked(check);
}
refreshDrawableState();
}
public void toggle() {
isChecked = !isChecked;
for (Checkable c : checkableViews) {
c.toggle();
}
}
private static final int[] CheckedStateSet = {
android.R.attr.state_checked
};
protected int[] onCreateDrawableState(int extraSpace) {
final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
if (isChecked()) {
mergeDrawableStates(drawableState, CheckedStateSet);
}
return drawableState;
}
protected void onFinishInflate() {
super.onFinishInflate();
final int childCount = this.getChildCount();
for (int i = 0; i < childCount; i++) {
findCheckableChildren(this.getChildAt(i));
}
}
private void findCheckableChildren(View v) {
if (v instanceof Checkable) {
this.checkableViews.add((Checkable) v);
}
if (v instanceof ViewGroup) {
final ViewGroup vg = (ViewGroup) v;
final int childCount = vg.getChildCount();
for (int i = 0; i < childCount; i++) {
findCheckableChildren(vg.getChildAt(i));
}
}
}
}
results_list_item.xml:
<com.test.mycompany.Widgets.CheckableListItem
android:id="@+id/results_list_item"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="5dp"
android:paddingBottom="5dp" >
<TextView android:id="@+id/results_list_item_textview1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:textSize="20sp"
android:textColor="#000000"
android:focusable="false" />
<TextView android:id="@+id/results_list_item_textview2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@id/results_list_item_textview1"
android:textSize="16sp"
android:textColor="@android:color/darker_gray"
android:focusable="false" />
</com.test.mycompany.Widgets.CheckableListItem>
最佳答案
我在 CheckedListItem
中更改并添加了这些方法,它对我有用:
@Override
public boolean onTouchEvent( MotionEvent event ) {
int action = event.getAction() & MotionEvent.ACTION_MASK;
if ( action == MotionEvent.ACTION_UP ) {
toggle();
}
return true;
}
public void toggle() {
setChecked( !isChecked() );
}
private static final int[] CheckedStateSet = { android.R.attr.state_checked };
问题似乎在于,在单击时,您从未处理过切换 View 的选中状态。
关于android - 自定义列表项不响应选择器中的 state_checked,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13627000/
是否有某种方法可以使用 JPA 或 Hibernate Crtiteria API 来表示这种 SQL?或者我应该将其作为 native 执行吗? SELECT A.X FROM (SELECT X,
在查询中, select id,name,feature,marks from (....) 我想删除其 id 在另一个 select 语句中存在的那些。 从 (...) 中选择 id 我是 sql
我想响应用户在 select 元素中选择一个项目。然而这个 jQuery: $('#platypusDropDown').select(function () { alert('You sel
这个问题在这里已经有了答案: SQL select only rows with max value on a column [duplicate] (27 个回答) 关闭8年前。 我正在学习 SQL
This question already has answers here: “Notice: Undefined variable”, “Notice: Undefined index”, and
我在 php 脚本中调用 SQL。有时“DE”中没有值,如果是这种情况我想从“EN”中获取值 应该是这样的,但不是这样的 IF (EXISTS (SELECT epf_application_deta
这可能是一个奇怪的问题,但不知道如何研究它。执行以下查询时: SELECT Foo.col1, Foo.col2, Foo.col3 FROM Foo INNER JOIN Bar ON
如何在使用 Camera.DestinationType.FILE_URI. 时在 phonegap camera API 中同时选择或拾取多个图像我能够一次只选择一张图像。我可以使用 this 在
这是一个纯粹的学术问题。这两个陈述实际上是否相同? IF EXISTS (SELECT TOP 1 1 FROM Table1) SELECT 1 ELSE SELECT 0 相对 IF EXIS
我使用 JSoup 来解析 HTML 响应。我有多个 Div 标签。我必须根据 ID 选择 Div 标签。 我的伪代码是这样的 Document divTag = Jsoup.connect(link
我正在处理一个具有多个选择框的表单。当用户从 selectbox1 中选择一个选项时,我需要 selectbox2 active 的另一个值。同样,当他选择 selectbox2 的另一个值时,我需要
Acme Inc. Christa Woods Charlotte Freeman Jeffrey Walton Ella Hubbard Se
我有一个login.html其中form定义如下: First Initial Plus Last Name : 我的do_authorize如下: "; pri
$.get( 'http://www.ufilme.ro/api/load/maron_online/470', function(data
我有一个下拉列表“磅”、“克”、“千克”和“盎司”。我想要这样一种情况,当我选择 gram 来执行一个函数时,当我在输入字段中输入一个值时,当我选择 pounds 时,我想要另一个函数来执行时我在输入
我有一个 GLSL 着色器,它从输入纹理的 channel 之一(例如 R)读取,然后写入输出纹理中的同一 channel 。该 channel 必须由用户选择。 我现在能想到的就是使用一个 int
我想根据下拉列表中的选定值生成输入文本框。 Options 2 3 4 5 就在这个选择框之后,一些输入字段应该按照选定的数字出现。 最佳答案 我建议您使用响应式(Reac
我是 SQL 新手,我想问一下如何根据首选项和分组选择条目。 +----------+----------+------+ | ENTRY_ID | ROUTE_ID | TYPE | +------
我有以下表结构: CREATE TABLE [dbo].[UTS_USERCLIENT_MAPPING_USER_LIST] ( [MAPPING_ID] [int] IDENTITY(1,1
我在移除不必要的床单时遇到了问题。我查看了不同的论坛并将不同的解决方案混合在一起。 此宏删除工作表(第一张工作表除外)。 Sub wrong() Dim sht As Object Applicati
我是一名优秀的程序员,十分优秀!