- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我想将我的 Spinner 与使用的自定义适配器绑定(bind)。我需要双向绑定(bind)。我不确定如何使用自定义适配器做到这一点?
我的微调器是在 xml 中定义的:
<Spinner
android:id="@+id/add_event_category_spinner"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="16dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_marginStart="16dp"
android:layout_marginTop="8dp"
android:prompt="@string/spinner_category_title"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/TextView"/>
自定义适配器:
public class EventCategoryAdapter extends ArrayAdapter<Category>
{
private Context context;
private List<Category> values;
public EventCategoryAdapter (@NonNull Context context, int textViewResourceId, @NonNull List<Category> values)
{
super(context, textViewResourceId, values);
this.context = context;
this.values = values;
}
public int getCount()
{
return values.size();
}
public Category getItem(int position)
{
return values.get(position);
}
public long getItemId(int position)
{
return position;
}
@NonNull
@Override
public View getView(int position, View convertView, ViewGroup parent)
{
TextView label = new TextView(context);
label.setText(values.get(position).getName());
return label;
}
@NonNull
@Override
public View getDropDownView(int position, View convertView, ViewGroup parent)
{
LayoutInflater vi = LayoutInflater.from(getContext());
convertView = vi.inflate(android.R.layout.simple_spinner_dropdown_item, parent, false);
CheckedTextView label = (CheckedTextView) convertView.findViewById(android.R.id.text1);
label.setText(values.get(position).getName());
return label;
}
}
因此,如您所见,适配器列表集合用于填充项目。 OnClick 监听器选择了我的 Category 对象,Spinner 仅将 Category.Name 字段显示为标签。现在我需要将微调器与数据绑定(bind)绑定(bind)以避免使用 onItemSelected
事件。相反,所选项目应该绑定(bind)并自动填充到我的 View 模型。我需要双向绑定(bind),因此更改 View 模型也应该触发微调器的集合选择。
我知道如何绑定(bind) TextView 、标签和回收器 View (用于列表),但我不确定如何为我的微调器绑定(bind)适配器。有什么建议吗?
我的尝试:
<android.support.v7.widget.AppCompatSpinner
android:id="@+id/spinner"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginTop="7dp"
app:layout_constraintTop_toBottomOf="@+id/editText4"
android:layout_marginRight="8dp"
android:layout_marginLeft="8dp"
android:entries="@{user.categories}"
android:selectedItemPosition="@={user.selectedCategoryPosition}"/>
和用户
类:
@InverseBindingMethods({@InverseBindingMethod(type = AppCompatSpinner.class, attribute = "android:selectedItemPosition")})
public class User extends BaseObservable
{
public List<Category> categories;
Category category = null;
@Bindable
public Category getCategory()
{
return category;
}
public void setCategory(Category category)
{
this.category = category;
notifyPropertyChanged(BR.category);
}
Integer selectedCategoryPosition = 0;
@BindingAdapter("selectedItemPositionAttrChanged")
void setSelectedItemPositionListener(AppCompatSpinner view, final InverseBindingListener selectedItemPositionChange)
{
if (selectedItemPositionChange == null)
{
view.setOnItemSelectedListener(null);
}
else
{
view.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener()
{
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id)
{
selectedItemPositionChange.onChange();
}
@Override
public void onNothingSelected(AdapterView<?> parent)
{
}
});
}
}
@InverseBindingAdapter(attribute = "selectedItemPosition")
Integer getSelectedItemPosition(AppCompatSpinner spinner)
{
return spinner.getSelectedItemPosition();
}
@Bindable
public Integer getSelectedCategoryPosition()
{
return selectedCategoryPosition;
}
public void setSelectedCategoryPosition(Integer selectedCategoryPosition)
{
this.selectedCategoryPosition = selectedCategoryPosition;
notifyPropertyChanged(BR.selectedCategoryPosition);
category = categories.get(selectedCategoryPosition);
}
}
在主要 Activity 中:
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
activityMainBinding = DataBindingUtil.setContentView(this, R.layout.activity_main);
User user = new User();
activityMainBinding.setUser(user);
现在我收到错误:
Error:Execution failed for task ':app:transformJackWithJackForDebug'.
com.android.jack.ir.JNodeInternalError: java.lang.Exception: java.lang.RuntimeException: failure, see logs for details.
@BindingAdapter on invalid element: void setSelectedItemPositionListener(android.support.v7.widget.AppCompatSpinner, android.databinding.InverseBindingListener)
最佳答案
将此添加到您的代码中
@BindingAdapter("selectedItemPosition")
void setSelectedItemPosition(AppCompatSpinner spinner,int position)
{
if(spinner.getSelectedItemPosition()!=position)
spinner.setSelection(position);
}
关于Android DataBinding - 将 Spinner 与自定义适配器绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45562170/
我正在尝试在 android 中学习 ViewModel,在我的第一阶段学习中,我正在尝试使用 ViewModel 和 DataBinding 来更新 UI(TextView)。在 ViewModel
在 ASP.NET 中,您可以单独绑定(bind)控件(即 GridView1.DataBind() ),也可以调用 Page.DataBind()绑定(bind)页面上的所有控件。 这两个调用之间有
如何使用新的 dataBinder 插件进行双向绑定(bind)(从 UI 到数据以及从数据到 UI)? 非常感谢! 最佳答案 我们还没有这个,也许在 v1 之后。不确定您的用例是什么,但我们已经为每
我正在尝试将 Kotlin 与 DataBinding 一起使用,但我遇到了这个错误: Error:[kapt] An exception occurred: java.lang.annotation
我只是将我的项目转换为 androidX 并成功构建项目。但是当我想运行那个时间时,它在启用了 java 的 android studio 3.5.3 中创建了这个错误。 这是我的项目 gradle:
这个问题在这里已经有了答案: no cached version available for offline mode (11 个回答) 2年前关闭。 无法确定任务的依赖关系 :app:compile
这是一个与今天无关的老问题。请参阅 Android 开发人员的说明。与四年前相比,现在将数据绑定(bind)应用于您的项目要容易得多。 我正在阅读 https://developer.android.
异常(exception)情况如下: java.lang.NullPointerException: Attempt to read from field 'java.lang.Runnable an
构建项目时收到以下警告 DSL element 'android.dataBinding.enabled' is obsolete and has been replaced with 'androi
今天升级Android Studio 2.3后,构建项目失败。 当构建项目 gradle console 显示这个错误: FAILURE: Build failed with an exception
我有一个消息列表,我将这些消息的模板绑定(bind)到单击事件中,然后在该模板内,我有一个超链接绑定(bind)到 js 函数,该函数应该打开一个 mailto 页面。 但是,尽管 js 函数执行,但
我在 Wildfly 8.2.1 和 Glassfish 4.1 中使用 Spring Data JPA 部署 Spring MVC 应用程序时遇到问题(它在 Wildfly 10 中工作,但我不允许
我为横向创建了一个替代布局 XML 文件。使用 DataBindingUtil 的填充在纵向模式下工作正常,但在加载自定义 XML 文件时在横向模式下崩溃。 使用数据绑定(bind)的布局膨胀: cl
数据绑定(bind)到控件的可见属性时是否存在任何已知问题? 无论我的属性是什么,该控件始终不可见。 Public ReadOnly Property IsRibbonCategory() As Bo
使用数据绑定(bind),如何绑定(bind)使用值类型的新对象? 简单的例子: public class Person() { private string _firstName;
我有一个 Image 控件,它的源绑定(bind)到对象上的属性(字符串 url 到图像)。进行服务调用后,我使用新 URL 更新数据对象。在调用 PropertyChanged 事件后,它离开我的代
我想在传入的绑定(bind)整数上添加一个常量值。事实上,我有几个地方想要绑定(bind)到相同的源值但添加不同的常量。所以理想的解决方案是这样的...... (注意:这是一个展示这个想法的例子
我正在开发一个 Windows Phone 应用程序。我将 List 绑定(bind)到内容控制元素。 在转换器中,我返回指定参数的字符串。
天哪!我讨厌这个。为什么这么复杂? 我正在尝试做的事情: 我有一个包含多个用户控件的表单,每个控件都有一个数据网格。每个网格通过 .ItemSource 属性与 ObservableCollectio
我正在使用数据绑定(bind)并且我已经声明了 lateinit var对于绑定(bind)以及当我要去不同的 fragment Leaky canary 显示泄漏时。 fragment class
我是一名优秀的程序员,十分优秀!