- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
此应用尝试在主显示页面上显示其 3 个 View ,如下所示:
问题:虽然应用程序运行,但它不会如上所述定位 View (即“AAAView”、“BBBView”、“CCCView”)。
(例如“AAAView”显示在“页面底部”,“BBBView”和“CCCView”显示在“页面中间”...--这是为什么?)
我认为问题是由于我错误使用(误解?)ActivityMapper/ActivityManager 类将 View /面板正确放置(或定位)在主页上造成的。
不幸的是,我无法找到任何有关如何正确/有效使用 ActivityMapper/ActivityManager 类的综合文档。(到目前为止,我所看到的示例应用程序对于我来说通常过于复杂,无法准确隔离 ActivityMapper/ActivityManager 类指定面板/ View 在主页上显示的位置)
应用程序中使用的代码如下所示...
(任何对我做错的事情的建议或解释都将非常感激......而且,我想我不是唯一一个在这个概念上挣扎的人)
感谢您的帮助!!
<?xml version="1.0" encoding="UTF-8"?>
<module rename-to='app'>
<inherits name='com.google.gwt.user.User' />
<inherits name='com.google.gwt.user.theme.standard.Standard' />
<inherits name="com.google.gwt.activity.Activity" />
<inherits name="com.google.gwt.place.Place" />
<entry-point class='aaa.bbb.ccc.client.AppEntryPoint' />
<source path='client' />
<source path='shared' />
</module>
package aaa.bbb.ccc.client;
import com.google.gwt.activity.shared.ActivityManager;
public class AppEntryPoint extends LayoutPanel implements EntryPoint
{
private LayoutPanel mainView = null;
interface AppEntryPointUiBinder extends UiBinder<LayoutPanel, AppEntryPoint>
{
}
private static AppEntryPointUiBinder uiBinder = GWT.create(AppEntryPointUiBinder.class);
@UiField
SimplePanel topOfPage;
@UiField
SimplePanel middleOfPage;
@UiField
SimplePanel bottomOfPage;
public AppEntryPoint()
{
super();
}
AcceptsOneWidget top = new AcceptsOneWidget()
{
public void setWidget(IsWidget activityWidget)
{
Widget widget = Widget.asWidgetOrNull(activityWidget);
mainView.setWidgetVisible(topOfPage, widget != null);
topOfPage.setWidget(widget);
}
};
AcceptsOneWidget mid = new AcceptsOneWidget()
{
public void setWidget(IsWidget activityWidget)
{
Widget widget = Widget.asWidgetOrNull(activityWidget);
mainView.setWidgetVisible(middleOfPage, widget != null);
middleOfPage.setWidget(widget);
}
};
AcceptsOneWidget bot = new AcceptsOneWidget()
{
public void setWidget(IsWidget activityWidget)
{
Widget widget = Widget.asWidgetOrNull(activityWidget);
mainView.setWidgetVisible(bottomOfPage, widget != null);
bottomOfPage.setWidget(widget);
}
};
public void onModuleLoad()
{
ClientFactory clientFactory = GWT.create(ClientFactory.class);
mainView = uiBinder.createAndBindUi(this);
EventBus eventBus = clientFactory.getEventBus();
ActivityMapper aaaActivityMapper = new AAAActivityMapper(clientFactory);
ActivityManager aaaActivityManager = new ActivityManager(aaaActivityMapper, eventBus);
aaaActivityManager.setDisplay(top);
ActivityMapper bbbActivityMapper = new BBBActivityMapper(clientFactory);
ActivityManager bbbActivityManager = new ActivityManager(bbbActivityMapper, eventBus);
bbbActivityManager.setDisplay(mid);
ActivityMapper cccActivityMapper = new CCCActivityMapper(clientFactory);
ActivityManager cccActivityManager = new ActivityManager(cccActivityMapper, eventBus);
cccActivityManager.setDisplay(bot);
AppPlaceHistoryMapper historyMapper = GWT.create(AppPlaceHistoryMapper.class);
PlaceController placeController = clientFactory.getPlaceController();
PlaceHistoryHandler historyHandler = new PlaceHistoryHandler(historyMapper);
historyHandler.register(placeController, eventBus, new AAAPlace());
RootLayoutPanel.get().add(mainView);
historyHandler.handleCurrentHistory();
}
}
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder'
xmlns:g='urn:import:com.google.gwt.user.client.ui' xmlns:h='urn:import:aaa.bbb.ccc.client'>
<ui:style src="app.css" />
<g:LayoutPanel width="800" height='600'>
<g:layer left='10%' right='10%' top='4px' height='10em'>
<g:SimplePanel ui:field="topOfPage"/>
</g:layer>
<g:layer left='10%' right='10%' top='204px' height='10em'>
<g:SimplePanel ui:field="middleOfPage"/>
</g:layer>
<g:layer left='10%' right='10%' top='404px' height='10em'>
<g:SimplePanel ui:field="bottomOfPage"/>
</g:layer>
</g:LayoutPanel>
</ui:UiBinder>
package aaa.bbb.ccc.client;
import com.google.gwt.event.shared.EventBus;
import com.google.gwt.event.shared.SimpleEventBus;
import com.google.gwt.place.shared.PlaceController;
public class ClientFactory
{
public ClientFactory()
{
}
private static final EventBus eventBus = new SimpleEventBus();
private static final PlaceController placeController = new PlaceController(eventBus);
private static final AAAView aaaView = new AAAView();
private static final BBBView bbbView = new BBBView();
private static final CCCView cccView = new CCCView();
public EventBus getEventBus()
{
return eventBus;
}
public PlaceController getPlaceController()
{
return placeController;
}
public AAAView getAAAView()
{
return aaaView;
}
public BBBView getBBBView()
{
return bbbView;
}
public CCCView getCCCView()
{
return cccView;
}
}
package aaa.bbb.ccc.client;
import com.google.gwt.place.shared.PlaceHistoryMapper;
import com.google.gwt.place.shared.WithTokenizers;
@WithTokenizers({AAAPlace.Tokenizer.class, BBBPlace.Tokenizer.class })
public interface AppPlaceHistoryMapper extends PlaceHistoryMapper
{
}
package aaa.bbb.ccc.client;
import com.google.gwt.core.client.GWT;
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.uibinder.client.UiBinder;
import com.google.gwt.uibinder.client.UiField;
import com.google.gwt.uibinder.client.UiHandler;
import com.google.gwt.user.client.ui.AcceptsOneWidget;
import com.google.gwt.user.client.ui.Button;
import com.google.gwt.user.client.ui.HTMLPanel;
import com.google.gwt.user.client.ui.IsWidget;
import com.google.gwt.user.client.ui.Label;
import com.google.gwt.user.client.ui.SimplePanel;
import com.google.gwt.user.client.ui.Widget;
public class AAAView extends SimplePanel implements IsWidget, AcceptsOneWidget
{
private final HTMLPanel aaaView;
private Presenter presenter;
private static AAAViewUiBinder uiBinder = GWT.create(AAAViewUiBinder.class);
interface AAAViewUiBinder extends UiBinder<HTMLPanel, AAAView>
{
}
public AAAView()
{
aaaView = uiBinder.createAndBindUi(this);
}
@UiField
Label aaaViewLabel;
@UiField
Button bbbButton;
@UiHandler("bbbButton")
void onBBBButtonClicked(ClickEvent event)
{
presenter.gotoBBBPlace();
}
@UiField
Button cccButton;
@UiHandler("cccButton")
void onCCCButtonClicked(ClickEvent event)
{
presenter.gotoCCCPlace();
}
public void setName(String name)
{
aaaViewLabel.setText(name);
}
public void setPresenter(Presenter presenter)
{
this.presenter = presenter;
}
public interface Presenter
{
void gotoBBBPlace();
void gotoCCCPlace();
}
@Override
public Widget asWidget()
{
return aaaView;
}
}
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
xmlns:g="urn:import:com.google.gwt.user.client.ui">
<ui:style src="app.css" />
<g:HTMLPanel ui:field="aaaView" styleName='{style.aaaView}'>
<g:Label ui:field="aaaViewLabel" text="AAAView" styleName='{style.viewLabel}'></g:Label>
<g:Button ui:field="bbbButton" text="go to bbbView"></g:Button>
<g:Button ui:field="cccButton" text="go to cccView"></g:Button>
</g:HTMLPanel>
</ui:UiBinder>
package aaa.bbb.ccc.client;
import com.google.gwt.activity.shared.AbstractActivity;
import com.google.gwt.event.shared.EventBus;
import com.google.gwt.place.shared.PlaceController;
import com.google.gwt.user.client.ui.AcceptsOneWidget;
public class AAAActivity extends AbstractActivity implements AAAView.Presenter
{
private String name = "...the AAAView...";
private final AAAView aaaView;
private final PlaceController placeController;
public AAAActivity(ClientFactory clientFactory)
{
aaaView = clientFactory.getAAAView();
placeController = clientFactory.getPlaceController();
}
@Override
public void start(AcceptsOneWidget panel, EventBus eventBus)
{
aaaView.setPresenter(this);
aaaView.setName(name);
panel.setWidget(aaaView.asWidget());
}
@Override
public void gotoBBBPlace()
{
placeController.goTo(new BBBPlace());
}
@Override
public void gotoCCCPlace()
{
placeController.goTo(new CCCPlace());
}
}
package aaa.bbb.ccc.client;
import com.google.gwt.activity.shared.Activity;
import com.google.gwt.activity.shared.ActivityMapper;
import com.google.gwt.place.shared.Place;
public class AAAActivityMapper implements ActivityMapper
{
private ClientFactory clientFactory;
public AAAActivityMapper(ClientFactory clientFactory)
{
this.clientFactory = clientFactory;
}
@Override
public Activity getActivity(Place place)
{
if (place instanceof BBBPlace)
{
return new BBBActivity(clientFactory);//return bbbActivityMapper.getActivity(place);
}
else
if (place instanceof CCCPlace)
{
return new CCCActivity(clientFactory);//return cccActivityMapper.getActivity(place);
}
return null;
}
}
package aaa.bbb.ccc.client;
import com.google.gwt.place.shared.Place;
import com.google.gwt.place.shared.PlaceTokenizer;
import com.google.gwt.place.shared.Prefix;
public class AAAPlace extends Place
{
private String aaaName = "AAAPlace";
public AAAPlace()
{
}
public String getAAAName()
{
return aaaName;
}
@Prefix("AAAPlace")
public static class Tokenizer implements PlaceTokenizer<AAAPlace>
{
@Override
public String getToken(AAAPlace place)
{
return place.getAAAName(); //"AAAName"; //place.getAAAName();
}
@Override
public AAAPlace getPlace(String token)
{
return new AAAPlace();
}
}
}
package aaa.bbb.ccc.client;
import com.google.gwt.core.client.GWT;
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.uibinder.client.UiBinder;
import com.google.gwt.uibinder.client.UiField;
import com.google.gwt.uibinder.client.UiHandler;
import com.google.gwt.user.client.ui.AcceptsOneWidget;
import com.google.gwt.user.client.ui.Button;
import com.google.gwt.user.client.ui.HTMLPanel;
import com.google.gwt.user.client.ui.IsWidget;
import com.google.gwt.user.client.ui.Label;
import com.google.gwt.user.client.ui.SimplePanel;
import com.google.gwt.user.client.ui.Widget;
public class BBBView extends SimplePanel implements IsWidget, AcceptsOneWidget
{
private final HTMLPanel bbbView;
private Presenter presenter;
private static BBBViewUiBinder uiBinder = GWT.create(BBBViewUiBinder.class);
interface BBBViewUiBinder extends UiBinder<HTMLPanel, BBBView>
{
}
public BBBView()
{
bbbView = uiBinder.createAndBindUi(this);
}
@UiField
Label bbbViewLabel;
@UiField
Button aaaButton;
@UiHandler("aaaButton")
void onAAAButtonClicked(ClickEvent event)
{
presenter.gotoAAAPlace();
}
@UiField
Button cccButton;
@UiHandler("cccButton")
void onCCCButtonClicked(ClickEvent event)
{
presenter.gotoCCCPlace();
}
public void setName(String name)
{
bbbViewLabel.setText(name);
}
public void setPresenter(Presenter presenter)
{
this.presenter = presenter;
}
public interface Presenter
{
void gotoAAAPlace();
void gotoCCCPlace();
}
@Override
public Widget asWidget()
{
return bbbView;
}
}
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
xmlns:g="urn:import:com.google.gwt.user.client.ui">
<ui:style src="app.css" />
<g:HTMLPanel ui:field="bbbView" styleName='{style.bbbView}'>
<g:Label ui:field="bbbViewLabel" text="BBBView" styleName='{style.viewLabel}'></g:Label>
<g:Button ui:field="aaaButton" text="go to aaaView"></g:Button>
<g:Button ui:field="cccButton" text="go to cccView"></g:Button>
</g:HTMLPanel>
</ui:UiBinder>
package aaa.bbb.ccc.client;
import com.google.gwt.activity.shared.AbstractActivity;
import com.google.gwt.event.shared.EventBus;
import com.google.gwt.place.shared.PlaceController;
import com.google.gwt.user.client.ui.AcceptsOneWidget;
public class BBBActivity extends AbstractActivity implements BBBView.Presenter
{
private String name = "...the BBBView...";
private final BBBView bbbView;
private final PlaceController placeController;
public BBBActivity(ClientFactory clientFactory)
{
bbbView = clientFactory.getBBBView();
placeController = clientFactory.getPlaceController();
}
@Override
public void start(AcceptsOneWidget panel, EventBus eventBus)
{
bbbView.setPresenter(this);
bbbView.setName(name);
panel.setWidget(bbbView.asWidget());
}
@Override
public void gotoAAAPlace()
{
placeController.goTo(new AAAPlace());
}
@Override
public void gotoCCCPlace()
{
placeController.goTo(new CCCPlace());
}
}
package aaa.bbb.ccc.client;
import com.google.gwt.activity.shared.Activity;
import com.google.gwt.activity.shared.ActivityMapper;
import com.google.gwt.place.shared.Place;
public class BBBActivityMapper implements ActivityMapper
{
private ClientFactory clientFactory;
public BBBActivityMapper(ClientFactory clientFactory)
{
this.clientFactory = clientFactory;
}
@Override
public Activity getActivity(Place place)
{
if (place instanceof AAAPlace)
{
return new AAAActivity(clientFactory);//aaaActivityMapper.getActivity(place);
}
else
if (place instanceof CCCPlace)
{
return new CCCActivity(clientFactory);//return cccActivityMapper.getActivity(place);
}
return null;
}
}
package aaa.bbb.ccc.client;
import com.google.gwt.place.shared.Place;
import com.google.gwt.place.shared.PlaceTokenizer;
import com.google.gwt.place.shared.Prefix;
public class BBBPlace extends Place
{
private String bbbName = "BBBPlace";
public BBBPlace()
{
}
public String getBBBName()
{
return bbbName;
}
@Prefix("BBBPlace")
public static class Tokenizer implements PlaceTokenizer<BBBPlace>
{
@Override
public String getToken(BBBPlace place)
{
return place.getBBBName(); //"BBBName"; //place.getBBBName();
}
@Override
public BBBPlace getPlace(String token)
{
return new BBBPlace();
}
}
}
package aaa.bbb.ccc.client;
import com.google.gwt.core.client.GWT;
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.uibinder.client.UiBinder;
import com.google.gwt.uibinder.client.UiField;
import com.google.gwt.uibinder.client.UiHandler;
import com.google.gwt.user.client.ui.AcceptsOneWidget;
import com.google.gwt.user.client.ui.Button;
import com.google.gwt.user.client.ui.HTMLPanel;
import com.google.gwt.user.client.ui.IsWidget;
import com.google.gwt.user.client.ui.Label;
import com.google.gwt.user.client.ui.SimplePanel;
import com.google.gwt.user.client.ui.Widget;
public class CCCView extends SimplePanel implements IsWidget, AcceptsOneWidget
{
private final HTMLPanel cccView;
private Presenter presenter;
private static CCCViewUiBinder uiBinder = GWT.create(CCCViewUiBinder.class);
interface CCCViewUiBinder extends UiBinder<HTMLPanel, CCCView>
{
}
public CCCView()
{
cccView = uiBinder.createAndBindUi(this);
}
@UiField
Label cccViewLabel;
@UiField
Button aaaButton;
@UiHandler("aaaButton")
void onAAAButtonClicked(ClickEvent event)
{
presenter.gotoAAAPlace();
}
@UiField
Button bbbButton;
@UiHandler("bbbButton")
void onBBBButtonClicked(ClickEvent event)
{
presenter.gotoBBBPlace();
}
public void setName(String name)
{
cccViewLabel.setText(name);
}
public void setPresenter(Presenter presenter)
{
this.presenter = presenter;
}
public interface Presenter
{
void gotoAAAPlace();
void gotoBBBPlace();
}
@Override
public Widget asWidget()
{
return cccView;
}
}
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
xmlns:g="urn:import:com.google.gwt.user.client.ui">
<ui:style src="app.css" />
<g:HTMLPanel ui:field="cccView" styleName='{style.cccView}'>
<g:Label ui:field="cccViewLabel" text="CCCView" styleName='{style.viewLabel}'></g:Label>
<g:Button ui:field="aaaButton" text="go to aaaView"></g:Button>
<g:Button ui:field="bbbButton" text="go to bbbView"></g:Button>
</g:HTMLPanel>
</ui:UiBinder>
package aaa.bbb.ccc.client;
import com.google.gwt.activity.shared.AbstractActivity;
import com.google.gwt.event.shared.EventBus;
import com.google.gwt.place.shared.PlaceController;
import com.google.gwt.user.client.ui.AcceptsOneWidget;
public class CCCActivity extends AbstractActivity implements CCCView.Presenter
{
private String name = "...the CCCView...";
private final CCCView cccView;
private final PlaceController placeController;
public CCCActivity(ClientFactory clientFactory)
{
cccView = clientFactory.getCCCView();
placeController = clientFactory.getPlaceController();
}
@Override
public void start(AcceptsOneWidget panel, EventBus eventBus)
{
cccView.setPresenter(this);
cccView.setName(name);
panel.setWidget(cccView.asWidget());
}
@Override
public void gotoAAAPlace()
{
placeController.goTo(new AAAPlace());
}
@Override
public void gotoBBBPlace()
{
placeController.goTo(new BBBPlace());
}
}
package aaa.bbb.ccc.client;
import com.google.gwt.activity.shared.Activity;
import com.google.gwt.activity.shared.ActivityMapper;
import com.google.gwt.place.shared.Place;
public class CCCActivityMapper implements ActivityMapper
{
private ClientFactory clientFactory;
public CCCActivityMapper(ClientFactory clientFactory)
{
this.clientFactory = clientFactory;
}
@Override
public Activity getActivity(Place place)
{
if (place instanceof AAAPlace)
{
return new AAAActivity(clientFactory);//return aaaActivityMapper.getActivity(place);
}
else
if (place instanceof BBBPlace)
{
return new BBBActivity(clientFactory);//return aaaActivityMapper.getActivity(place);
}
return null;
}
}
package aaa.bbb.ccc.client;
import com.google.gwt.place.shared.Place;
import com.google.gwt.place.shared.PlaceTokenizer;
import com.google.gwt.place.shared.Prefix;
public class CCCPlace extends Place
{
private String cccName = "CCCPlace";
public CCCPlace()
{
}
public String getCCCName()
{
return cccName;
}
@Prefix("CCCPlace")
public static class Tokenizer implements PlaceTokenizer<CCCPlace>
{
@Override
public String getToken(CCCPlace place)
{
return place.getCCCName(); //"CCCName"; //place.getCCCName();
}
@Override
public CCCPlace getPlace(String token)
{
return new CCCPlace();
}
}
}
h1 {
font-size: 2em;
font-weight: bold;
color: #777777;
margin: 40px 0px 70px;
text-align: center;
}
.aaaView {
border-color: black;
border-width: 2 px;
background-color: navy;
width: 75%;
height: 25%;
}
.viewLabel {
color:white;
font-size: 24px;
font-style: italic;
font-weight: bolder;
border-width: 2 px;
}
.bbbView {
border-color: black;
border-width: 2 px;
background-color: blue;
width: 75%;
height: 25%;
}
.cccView {
border-color: black;
border-width: 2 px;
background-color: lightblue;
width: 75%;
height: 25%;
}
.layer1 {
border-color: red;
border-width: 2 px;
background-color: yellow;
width: 100%;
height: 33%;
}
.layer2 {
border-color: teal;
border-width: 2 px;
background-color: green;
width: 100%;
height: 33%;
}
.layer3 {
border-color: grey;
border-width: 2 px;
background-color: aqua;
width: 100%;
height: 33%;
}
.gwt-layer {
border-color: grey;
border-width: 2 px;
background-color: aqua;
width: 100%;
height: 33%;
}
<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>app</title>
<script type="text/javascript" language="javascript" src="app/app.nocache.js"></script>
</head>
<body>
<iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe>
<noscript>
<div style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif">
Your web browser must have JavaScript enabled
in order for this application to display correctly.
</div>
</noscript>
</body>
</html>
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>app</display-name>
<welcome-file-list>
<welcome-file>app.html</welcome-file>
</welcome-file-list>
</web-app>
最佳答案
问题出在您的 ActivityMapper
中。
当您转到 AAAPlace
时(这是默认位置,因此当 URL 中没有任何历史标记时使用该位置):
AAAActivityMapper
返回 null
(给定 aaaActivityManager
),它将隐藏 topOfPage
区域BBBActivityMapper
返回一个 AAAActivity
,它将在 middleOfPage
区域显示(单个)AAAView
CCCActivityMapper
返回另一个 AAAActivity
,它将在 bottomOfPage
区域显示(单个)AAAView
因为 AAAView 是一个小部件,所以它一次只能显示在一个位置。而且因为它是单例,所以最后一个 setWidget
将获胜(它将在将小部件添加到新父级之前从其前一个父级中删除该小部件)。由于您在 bbbActivityManager
之后初始化了 cccActivityManager
,并且事件处理程序按注册顺序调用,因此 bot
将获胜。这会留下一个隐藏的 topOfPage
、一个空的 middleOfPage
(未隐藏,因为 mid
是使用非空值调用的,但紧接着 bot
使用相同的小部件调用,因此从 middleOfPage
中窃取它并将其放入 bottomOfPage
),以及 bottom 中的 AAAView
页数
。无耻插件:看看http://blog.ltgt.net/gwt-21-activities/ (以及有关地点和 Activity 的兄弟文章)。我希望它能帮助您了解这一切是如何运作的。
关于java - 如何正确使用 ActivityMapper/ActivityManager 来定位主页布局上显示的 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5569769/
我在尝试从子文件夹调用 View 时遇到一些错误。首先,这东西能用 Route::get('/', function() { return View::make('sample'); }); 但是当我
我有另一个 View 设置,并准备好等待其viewmodel。我的RelayCommand到达我的“当前” View 模型。从当前的 View 模型显示新 View 的最佳方法是什么? 我一直在阅读,
我有一个 bigquery View ,我想与数据分析师共享,以便他们可以通过 Data Studio 访问其数据。此共享 View 对另一个数据集中的私有(private) View 进行查询,而私
我有 3 个 View ,并希望将它们集成到一个 View 中,以便它们成为这一 View 中的子文件夹。 我怎样才能做到这一点?还是我必须制作一个 View ,然后再次手动添加和配置这些 View
我在沙发数据库中有一些文档,这些文档的字段是不同关联文档的ID数组: { associatedAssets: ["4c67f6241f4a0efb7dc2abc24a004dfe", "270f
我正在开发一个小实用程序 View ,它将嵌入到我们的几个应用程序中。它将位于一个公共(public)图书馆中。 我应该将其作为 ViewModel 以及默认的 View 实现公开,还是作为具有固定
由于我的某些 View 具有相似的功能,因此我希望能够与每个 View 共享相同的 View 模型。我的想法是将 token 传递给viewmodel的构造函数,但这将导致代码中出现许多if和else
我有一个目标 View (蓝色 View 和红色 View 用于左上角位置)。我试图用手指移动这个 View 。如果 View 不旋转,一切都很好。 但当我旋转 View 并移动时,第一次就很好了。但
我收到这个错误, "Attempt to invoke virtual method 'android.view.View android.view.View.getRootView()' on a
我将发布我目前拥有的源代码,然后解释我的问题。 这是我希望过渡发生的窗口 这是关联的 View 模型 public class MainViewModel {
我正在尝试找出我遇到的错误。最初,我的同事只是使用 将 View 添加到 subview 中 [self.view addSubview:someController.view]; 来自当前ViewC
我是 MVVM 的新手,需要一些帮助。 我的应用程序由许多不同的窗口组成,这些窗口显示允许用户编辑业务层中的数据的控件。 目前,每次用户打开这些窗口之一的新实例时,都会从头开始创建一个 ViewMod
我一直在寻找与我类似的问题以找到解决方案,但我真的找不到类似的东西。 我试图使用 asynctask 类从解析中下载帖子数组,在获取帖子后,它应该在我的页面中设置帖子数组,并执行 setAdapter
这个问题在这里已经有了答案: What is local/remote and no-interface view in EJB? (2 个答案) 关闭 9 年前。 我以前理解它的意思是“接口(in
希望这不会太困惑。 我有一个主视图 Controller ( MainView ),在 View 底部有一个堆栈 View ,在堆栈 View 中我有三个 View 。在一个 View 中(我们称之为
我一直在想这个问题,我真的不知道如何正确地将一个 View Controller 管理的 View 添加到另一个 View Controller 的 View 中。 这不起作用,因为 View 没有完
在明显的情况下,我必须将大量文件从一个 View 复制到另一个 View 。要复制的文件名将作为输入给出。有什么想法可以通过脚本实现吗? 谢谢,日语 最佳答案 最简单的方法是使用 clearfsimp
我正在使用完整日历。这里我的问题是,当单击上一个按钮或下一个按钮单击功能时,如何找到月 View 、周 View 或日 View 格式的完整日历。这里正在调用下一个和上一个按钮的自定义代码。因为使用这
我对这两者感到困惑,并试图找出差异,但没有得到我正在寻找的特定内容。 在哪里使用索引 View 而不是普通 View 。 它们之间的一些重要区别。 最佳答案 关键的区别在于物化 View 很好,物化了
我在一个 xib 中有一个 CustomView,在两个不同的 xib 中有两个不同的 View 。我想在一个 CustomeView 中依次显示这两个 View 。我有一个 NSView 对象,它连
我是一名优秀的程序员,十分优秀!