尝试从我的视图模型在布局文件中运行方法,但是我不断从布局文件中获取error: cannot find symbol class ViewModels
。布局文件是一个片段。我尝试使缓存无效并重新同步,但没有帮助。我是否需要向片段本身添加任何内容?我看到人们使用数据绑定来启动片段,但是,我已经阅读了它的可选内容。
更新:接受了OnClick方法进行测试,但仍然抛出错误。我想问题出在我的减速,但是,idk为什么。当我编辑布局时,在其中键入视图模型名称时会显示路径。
Update2:尝试将变量的设置类型设置为等于启动片段进行测试的活动路径,并且构建良好。必须有一种添加不是我的活动的导入的方法。
布局文件
<?xml version="1.0" encoding="utf-8"?>
<layout>
<data>
<variable
name="viewTest"
type="rangers.socmanv2.ViewModels.BattleRhythmViewModel" />
</data>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/battleRhythmMenu"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Fragments.BattleRhythmFrag">
<Button
android:id="@+id/newBattle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="76dp"
android:layout_marginLeft="76dp"
android:layout_marginTop="88dp"
android:text="New Battle Rhythm"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
/>
<Button
android:id="@+id/editBattle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="76dp"
android:layout_marginLeft="76dp"
android:layout_marginTop="50dp"
android:text="Edit Battle Rhythm"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/newBattle" />
<Button
android:id="@+id/deleteBattle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="76dp"
android:layout_marginLeft="76dp"
android:layout_marginTop="50dp"
android:text="Delete Battle Rhythm"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/editBattle" />
</android.support.constraint.ConstraintLayout>
</layout>
片段
public class BattleRhythmFrag extends Fragment {
private BattleRhythmViewModel mViewModel;
private View view;
private Button test;
public static BattleRhythmFrag newInstance() {
return new BattleRhythmFrag();
}
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container,
@Nullable Bundle savedInstanceState) {
view = inflater.inflate(R.layout.battle_rhythm_fragment, container, false);
mViewModel = new BattleRhythmViewModel();
return view;
}
@Override
public void onActivityCreated(@Nullable Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
mViewModel = ViewModelProviders.of(this).get(BattleRhythmViewModel.class);
// TODO: Use the ViewModel
}
}
查看模型
public class BattleRhythmViewModel extends ViewModel {
public void launchNewFragment(FragmentManager fragM)
{
Log.d("viewmodel","hitting launchNewFrag");
HomeFrag test = new HomeFrag();
fragM.beginTransaction().replace(R.id.homeContent,test,"launched"+test);
}
public void test()
{Log.d("viewmodel","hitting test");
}
}
答案 0 :(得分:1)
您的错误是在viewModel
构造函数中。
您必须添加默认构造函数,因为您没有添加任何工厂ViewModelProvider.Factory
,但是您的BattleRhythmViewModel
没有任何默认构造函数。
答案1:
public class BattleRhythmViewModel extends ViewModel {
public void launchNewFragment(){
}
public void test()
{Log.d("viewmodel","hitting test");
}
}
}
答案2:比答案1更好,因为您不需要添加默认值并且可以在模型中使用您的片段
public class Factory implements ViewModelProvider.Factory {
private FragmentManager fragM;
public Factory(FragmentManager fragM) {
this.fragM= fragM;
}
@NonNull
@Override
public <T extends ViewModel> T create(@NonNull Class<T> modelClass) {
if (modelClass.isAssignableFrom(BattleRhythmViewModel.class)) {
return (T) new BattleRhythmViewModel(fragM);
}
throw new IllegalArgumentException("Unknown ViewModel class");
}
}
将您的viewmodel创建者行更改为
Factory factory = new Factory(this)
mViewModel = ViewModelProviders.of(this,factory).get(BattleRhythmViewModel.class);