Tag: 布局

如何更改EditText中的线条颜色

我在我的布局xml文件中创build一个EditText 但是我想在EditText中把Holo的颜色改成(例如)红色。 如何做到这一点?

添加图像到轨道上的ruby布局

我想添加一个图像在我的模板ruby on rails项目,我当前有代码<img src="../../../publichttp://img.dovov.comrss.jpg" alt="rss feed" />在布局stores.html.erb文件但是这似乎并没有加载,因为它看起来像缺less一个路线,我不知道它应该是什么。 有什么想法吗?

获取android.content.res.Resources $ NotFoundException:即使资源存在于android中也是exception

请让我知道我哪里错了,得到错误 我正在创build一个应用程序,其中一个活动只能处于横向模式。 所以我在AndroidManifest.xml文件中添加了以下内容 <activity android:name=".LandScapeImageActivity" android:screenOrientation="landscape"></activity> 我已经创build了一个文件夹 / RES /布局,土地 并在其中添加一个名为see_today_landscape_layout的布局。 并在onCreate()我添加了以下内容 protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.see_today_landscape_layout); …. } 但是当我运行我的应用程序,我收到以下错误 02-06 13:46:14.358: E/AndroidRuntime(13286): FATAL EXCEPTION: main 02-06 13:46:14.358: E/AndroidRuntime(13286): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.mid.kew.activities/com.mid.kew.activities.LandScapeImageActivity}: android.content.res.Resources$NotFoundException: Resource ID #0x7f03002b 02-06 13:46:14.358: E/AndroidRuntime(13286): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2787) 02-06 13:46:14.358: E/AndroidRuntime(13286): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2803) 02-06 13:46:14.358: E/AndroidRuntime(13286): at […]

如何使WPF数据模板填充列表框的整个宽度?

我在WPF中有一个ListBox DataTemplate 。 我想要一个项目在左侧的ListBox和另一个项目紧靠在右侧,但我不知道如何做到这一点。 到目前为止,我有一个三列的Grid ,左侧和右侧的内容和中心是宽度设置为“*”的占位符。 我哪里错了? 这里是代码: <DataTemplate x:Key="SmallCustomerListItem"> <Grid HorizontalAlignment="Stretch"> <Grid.RowDefinitions> <RowDefinition/> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition/> <ColumnDefinition Width="*"/> <ColumnDefinition/> </Grid.ColumnDefinitions> <WrapPanel HorizontalAlignment="Stretch" Margin="0"> <!–Some content here–> <TextBlock Text="{Binding Path=LastName}" TextWrapping="Wrap" FontSize="24"/> <TextBlock Text=", " TextWrapping="Wrap" FontSize="24"/> <TextBlock Text="{Binding Path=FirstName}" TextWrapping="Wrap" FontSize="24"/> </WrapPanel> <ListBox ItemsSource="{Binding Path=PhoneNumbers}" Grid.Column="2" d:DesignWidth="100" d:DesignHeight="50" Margin="8,0" Background="Transparent" BorderBrush="Transparent" IsHitTestVisible="False" HorizontalAlignment="Stretch"/> </Grid> […]

为什么我的android活动总是开始滚动到底部?

每当我开始这个活动,它总是开始触底 – 滚动到底部。 我没有做任何奇怪的活动OnCreate(或任何地方的事情),我希望改变滚动位置。 我已经尝试将焦点设置到最上面的可调焦控件和scrollto方法,但是它们都没有工作。 另外,我的其他活动都没有这个问题。 这是布局: <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/scroll" android:layout_width="fill_parent" android:layout_height="wrap_content"> <LinearLayout android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/edit_refresh_update_header" android:textSize="18sp"/> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="\n" android:textSize="4sp"/> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Variable:" android:textSize="18sp"/> <Spinner android:id="@+id/edit_refresh_variables_spinner" android:layout_width="match_parent" android:layout_height="wrap_content"/> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="\n" android:textSize="4sp"/> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Network:" android:textSize="18sp"/> <RadioGroup android:id="@+id/widget1" android:layout_width="match_parent" android:layout_height="wrap_content" xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical"> <RadioButton android:text="Web" android:id="@+id/edit_refresh_update_rb_web" android:layout_width="wrap_content" […]

如何在另一个div内水平放置两个div

我还没有玩CSS的时间太久,现在没有提及。 我的问题应该相当简单,但是使用Googlesearch并不能提供足够的答案。 所以,join集体的知识 |#header—————————————————————| | TITLE | |#sub-title————————————————————| |bread > crumb | username logout | |#sub-left | #sub-right| |———————————|————————————| 这就是我想要我的布局。 标题反正。 我希望子标题包含子左侧的子右侧。 我用什么css规则来确保div被另一个div的属性所约束。 在这种情况下,如何确保在子标题内留下子版权和子版权?

closures一个行动的布局

我的情况:ReportsController的查看动作应该呈现纯html,而不是作为一个文件(在浏览器中查看并保存)。 所以为了渲染我使用视图模板view.html.erb和我neetclosures此操作的任何布局。 但在这个控制器的其他行动布局应保持不变。 只能closures整个控制器,如下所示: ReportsController < ApplicationController layout false 但是这样做是错误的:(对于所有的行动,我试图使用这样的事情在行动: def view @report = Report.new(params[:report]) unless @report.valid? render :action => 'new' and return else render :layout => false end end 我该怎么办?

垂直内容在Android EditText中alignment

我有一个多行的EditText : <EditText android:layout_gravity="center" android:id="@+id/txtMessage" android:layout_height="wrap_content" android:layout_below="@+id/lblMessage" android:layout_width="wrap_content" android:width="250dip" android:text="" android:maxLength="760" android:lines="4"> </EditText> 现在内容与中间alignment。 我想要这样的内容alignment: 垂直alignment的文本示例http://img28.imageshack.us/img28/3972/edittext.png 有这样的财产吗?

导航控制器顶部布局指南不符合自定义过渡

简洁版本: 在自定义转换和iOS7中的UINavigationController中使用自动布局顶部布局指南时遇到问题。 具体而言,顶部布局指南和文本视图之间的约束不被遵守。 有没有人遇到过这个问题? 长版本: 我有一个明确定义约束的场景(即顶部,底部,左侧和右侧),呈现如下所示的视图: 但是,当我在导航控制器上使用这个自定义转换时,顶部布局指南的顶部约束似乎closures,呈现如下,就好像顶部布局指南位于屏幕顶部而不是底部的导航控制器: 在使用自定义转换时,导航控制器的“顶层布局指南”会变得混乱。 剩下的约束正在正确应用。 如果我旋转设备并再次旋转,一切都会突然呈现正确,所以看起来不是约束没有被正确定义的问题。 同样,当我closures我的自定义转换时,视图呈现正确。 话虽如此, _autolayoutTrace报告说, UILayoutGuide对象遭受AMBIGUOUS LAYOUT ,当我运行: (lldb) po [[UIWindow keyWindow] _autolayoutTrace] 但是,即使我已经确保没有缺less约束(我已经完成了习惯select视图控制器并select“为视图控制器添加缺less的约束”或select全部的控制,并为他们做同样的)。 就我如何精确转换而言,我已经在animationControllerForOperation方法中指定了一个符合UIViewControllerAnimatedTransitioning的对象: – (id<UIViewControllerAnimatedTransitioning>)navigationController:(UINavigationController *)navigationController animationControllerForOperation:(UINavigationControllerOperation)operation fromViewController:(UIViewController*)fromVC toViewController:(UIViewController*)toVC { if (operation == UINavigationControllerOperationPush) return [[PushAnimator alloc] init]; return nil; } 和 @implementation PushAnimator – (NSTimeInterval)transitionDuration:(id <UIViewControllerContextTransitioning>)transitionContext { return 0.5; } – (void)animateTransition:(id<UIViewControllerContextTransitioning>)transitionContext { UIViewController* […]

如何在Zend Framework中切换布局文件?

我相信这是一个简单的单线程,但我似乎无法find它。 我怎样才能使用不同的布局文件进行特定的操作? 更新:这对我工作,谢谢! // Within controller $this->_helper->_layout->setLayout('other-layout') //other-layout.phtml //Within view script <?php $this->layout()->setLayout('other-layout'); ?>