Questions tagged «view»

此标记用于有关数据库视图或UI /体系结构视图的问题。另请参见以下标签:sql-view,android-view,uiview。





5
通过扩大布局来创建自定义视图?
我正在尝试创建一个自定义视图,该视图将替换我在多个地方使用的特定布局,但是我为此很努力。 基本上,我想替换为: <RelativeLayout android:id="@+id/dolphinLine" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_centerInParent="true" android:background="@drawable/background_box_light_blue" android:padding="10dip" android:layout_margin="10dip"> <TextView android:id="@+id/dolphinTitle" android:layout_width="200dip" android:layout_height="100dip" android:layout_alignParentLeft="true" android:layout_marginLeft="10dip" android:text="@string/my_title" android:textSize="30dip" android:textStyle="bold" android:textColor="#2E4C71" android:gravity="center"/> <Button android:id="@+id/dolphinMinusButton" android:layout_width="100dip" android:layout_height="100dip" android:layout_toRightOf="@+id/dolphinTitle" android:layout_marginLeft="30dip" android:text="@string/minus_button" android:textSize="70dip" android:textStyle="bold" android:gravity="center" android:layout_marginTop="1dip" android:background="@drawable/button_blue_square_selector" android:textColor="#FFFFFF" android:onClick="onClick"/> <TextView android:id="@+id/dolphinValue" android:layout_width="100dip" android:layout_height="100dip" android:layout_marginLeft="15dip" android:background="@android:drawable/editbox_background" android:layout_toRightOf="@+id/dolphinMinusButton" android:text="0" android:textColor="#2E4C71" android:textSize="50dip" android:gravity="center" android:textStyle="bold" android:inputType="none"/> <Button android:id="@+id/dolphinPlusButton" …
107 android  xml  view 


6
MVC Razor视图嵌套了foreach的模型
想象一个常见的场景,这是我遇到的一个简单的版本。实际上,我在我上还有几层进一步的嵌套。 但这是场景 主题包含列表类别包含列表产品包含列表 我的控制器提供了一个完全填充的主题,其中包含该主题的所有类别,此类别中的产品及其订单。 订单集合具有一个名为“数量”(在其他属性中)的属性,需要对其进行编辑。 @model ViewModels.MyViewModels.Theme @Html.LabelFor(Model.Theme.name) @foreach (var category in Model.Theme) { @Html.LabelFor(category.name) @foreach(var product in theme.Products) { @Html.LabelFor(product.name) @foreach(var order in product.Orders) { @Html.TextBoxFor(order.Quantity) @Html.TextAreaFor(order.Note) @Html.EditorFor(order.DateRequestedDeliveryFor) } } } 如果我改用lambda,那么我似乎只获得对顶级Model对象“ Theme”的引用,而不是foreach循环中的那些对象。 我正在尝试做的事情甚至可能吗?或者我高估或误解了什么可能? 有了上述,我在TextboxFor,EditorFor等错误 CS0411:无法从用法中推断方法'System.Web.Mvc.Html.InputExtensions.TextBoxFor(System.Web.Mvc.HtmlHelper,System.Linq.Expressions.Expression>)'的类型参数。尝试显式指定类型参数。 谢谢。

19
如何制作带有圆角的视图?
我正在尝试在带有圆角的android中进行查看。到目前为止,我发现的解决方案是定义一个带有圆角的形状并将其用作该视图的背景。 这就是我所做的,定义如下所示的可绘制对象: <padding android:top="2dp" android:bottom="2dp"/> <corners android:bottomRightRadius="20dp" android:bottomLeftRadius="20dp" android:topLeftRadius="20dp" android:topRightRadius="20dp"/> 现在,我将其用作布局的背景,如下所示: <LinearLayout android:orientation="vertical" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="10dp" android:layout_marginRight="10dp" android:layout_marginBottom="10dp" android:clipChildren="true" android:background="@drawable/rounded_corner"> 这工作得很好,我可以看到视图具有圆角。 但是我的布局中还有其他许多子视图,例如ImageView或a MapView。当我ImageView在上面的布局中放置一个图像时,图像的角不会被修剪/裁剪,而是显得完整。 我已经看到了其他解决方法,使其能够像此处说明的那样工作。 但是,是否有一种方法可以为视图设置圆角,并且其所有子视图都包含在具有圆角的主视图中?

3
我可以在MySQL中使用参数创建视图吗?
我有这样的看法: CREATE VIEW MyView AS SELECT Column FROM Table WHERE Value = 2; 我想使其更通用,这意味着将2更改为变量。我尝试了这个: CREATE VIEW MyView AS SELECT Column FROM Table WHERE Value = @MyVariable; 但是MySQL不允许这样做。 我发现了一个丑陋的解决方法: CREATE FUNCTION GetMyVariable() RETURNS INTEGER DETERMINISTIC NO SQL BEGIN RETURN @MyVariable; END| 然后视图是: CREATE VIEW MyView AS SELECT Column FROM Table WHERE …

6
Android片段onClick按钮方法
我正在尝试在onClick(View v)XML中调用该方法,但不适用于Fragment。这是错误。 01-17 12:38:36.840: E/AndroidRuntime(4171): java.lang.IllegalStateException: Could not find a method insertIntoDb(View) in the activity class main.MainActivity for onClick handler on view class android.widget.Button with id 'btn_conferma' Java代码: public void insertIntoDb(View v) { ... } XML: <Button android:id="@id/btn_conferma" style="?android:attr/borderlessButtonStyle" android:layout_width="0.0dip" android:layout_height="45dp" android:layout_marginLeft="2dp" android:layout_weight="1.0" android:background="@drawable/bottoni" android:gravity="center_horizontal|center_vertical" android:onClick="insertIntoDb" android:text="SALVA" android:textColor="#ffffff" android:textSize="16sp" />
90 android  button  view  click 

6
有没有一种方法可以使用普通ADO从SQL Server检索视图定义?
我正在使用ADO ConnectionOpenSchema()调用的各种形式成功地从SQL服务器上托管的数据库中提取列定义,因此我可以以编程方式在另一个SQL数据库中重新创建这些表。到现在为止还挺好。 与上述表格的主要交互是通过多个视图进行的。尽管OpenSchema()能够以与返回表的列定义相同的方式返回视图的列定义,但是缺少了关键的信息-视图中的列映射到基础表中的哪个表和列。 我尝试访问用于使用ADOX目录视图创建视图的SQL命令,但似乎我们正在使用的SQL Server的OLEDB驱动程序不支持此功能。 是否有任何方法可以通过ADO获得有关视图配置的此信息,即声明“ ColumnX映射到表Z中的ColumnY”还是采用用于创建视图的实际SQL命令的形式?
89 sql-server  view  ado 


1
Android SDK中的getWidth / Height()和getMeasuredWidth / Height()有什么区别?
的Android文档说,有两种尺寸为一个视图时,测量的尺寸和绘图尺寸。测量尺寸是在测量过程中计算的尺寸(onMeasure方法),而工程图尺寸是屏幕上的实际尺寸。特别是,文档说: 这些值可以但不必与测量的宽度和高度不同。 因此,我的问题是:什么使图纸尺寸与测量尺寸不同?如果onMeasure(int,int)方法符合布局要求(给定参数widthMeasureSpec和heightMeasureSpec,则SDK如何确定视图应具有不同的图纸尺寸? 另外,如何在Android源代码中/何处使用测量的宽度/高度来计算绘图的宽度/高度?我试图查看View源代码,但无法弄清楚如何使用measuredWidth / Height计算最终的宽度/高度。也许与填充有关,但是我不确定。



By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.