我尝试用设计模式学习编程。目前我尝试使用模型 - 视图 - 演示者模式构建一个android-app,我有问题要找出,如何在我有不同的视图和演示者时设计类,使用相同的模型。
在我的情况下,我有view1和presenter1,它管理用户输入。这个输入是模型的保存,并将保存在那里。
然后我有view2和presenter2,它应该从模型中获取用户输入并显示它。
当我有1-1-1(view1-presenter1-model1)时,我想出了如何组合everthing(与接口等)。但是当我有多个与同一模型进行通信的视图和演示者时,我无法找到如何管理翻转。
MainActivity代表我示例中的第一个视图:
public class MainActivity extends AppCompatActivity implements ContractMain.IViewMain {
private PresenterMain presenterMain;
private Button saveButton;
private EditText editText;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
editText = (EditText)findViewById(R.id.editText);
saveButton = (Button)findViewById(R.id.saveButton);
saveButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
saveButtonClicked(editText.getText().toString());
}
});
presenterMain = new PresenterMain(this);
}
@Override
public void saveButtonClicked(String input) {
presenterMain.onSaveButtonClicked(input);
}
}
这将是第一个视图的演示者:
public class PresenterMain implements ContractMain.IPresenterMain {
ContractMain.IViewMain iViewMain;
Model model;
public PresenterMain(ContractMain.IViewMain iViewMain){
this.iViewMain = iViewMain;
model = new Model(this);
}
@Override
public void onSaveButtonClicked(String input) {
if(!input.equals("")){
model.saveInput(input);
}
}
}
这将是模型:
public class Model implements IModel{
ContractMain.IPresenterMain iPresenterMain;
ArrayList<String> textInputContainer;
public Model(ContractMain.IPresenterMain iPresenterMain){
this.iPresenterMain = iPresenterMain;
textInputContainer = new ArrayList<String>();
}
@Override
public void saveInput(String input) {
textInputContainer.add(input);
}
@Override
public String getInput(int index) {
return textInputContainer.get(index);
}
}
这将是第二个观点:
public class View2 extends AppCompatActivity implements Contract2.IView2{
TextView textView;
Presenter2 presenter2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_view2);
textView= (TextView)findViewById(R.id.textView);
presenter2 = new Presenter2(this);
}
@Override
public void showData(String data) {
textView.setText(data);
}
}
最后,这将成为第二种观点的主持人。在这里,我不知道如何引用模型来获取数据,这是我从第一个视图中传递的:
public class Presenter2 implements Contract2.IPresenter2{
Contract2.IView2 iView2;
public Presenter2(Contract2.IView2 iView2){
this.iView2 = iView2;
}
@Override
public void onShowDataClicked() {
String s = null;
//Here i need to get the data from the model, save it in s and
// send it to view2
iView2.showData(s);
}
}
答案 0 :(得分:0)
模型是业务逻辑的对象,例如用户,汽车或您需要的业务逻辑。该模型不依赖于视图或演示者,实际上演示者可以使用多个模型来执行其操作并告诉视图在其上绘制什么。
因此,演示者可以共享模型,事实上,模型在几个演示者中使用是正常的。