标签: landscape

UISearchBar宽度错误的景观

当您以横向模式启动时,我的搜索栏会稍微向右拉伸.如果然后旋转到纵向模式,它仍然略宽.但是,如果您以纵向模式启动,并且然后将其旋转为横向,则它很好.这是我的代码.

sBar = [[UISearchBar alloc] initWithFrame:CGRectZero];
[sBar sizeToFit];
sBar.delegate = self;
sBar.autoresizingMask = UIViewAutoresizingFlexibleWidth |UIViewAutoresizingFlexibleBottomMargin;
[self.view addSubview:sBar];
Run Code Online (Sandbox Code Playgroud)

iphone cocoa-touch landscape orientation uisearchbar

4
推荐指数
1
解决办法
2642
查看次数

Android EditText扩展为对话框

我有这个布局

在此输入图像描述

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout 
        android:id="@+id/viewer_top"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@android:color/background_dark"
        android:orientation="horizontal" >

        <RelativeLayout 
            android:layout_width="0dp"
            android:layout_height="wrap_content" 
            android:layout_marginLeft="4dp"
            android:layout_marginRight="4dp"
            android:layout_marginTop="5dp"
            android:layout_marginBottom="3dp"
            android:layout_weight="1" >
            <EditText
                android:id="@+id/viewer_filter"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:hint="@string/hint_filter"
                android:background="@android:color/white"
                android:drawableLeft="@android:drawable/ic_menu_search"
                android:inputType="text"
                android:paddingLeft="4dp"
                android:selectAllOnFocus="true" >
            </EditText>
            <ImageView
                android:id="@+id/viewer_filterX"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" 
                android:layout_alignTop="@id/viewer_filter"
                android:layout_alignRight="@id/viewer_filter"
                android:src="@android:drawable/ic_menu_close_clear_cancel"
                android:visibility="invisible" >
            </ImageView>
        </RelativeLayout>

        <RelativeLayout 
            android:layout_width="0dp"
            android:layout_height="wrap_content" 
            android:layout_marginLeft="4dp"
            android:layout_marginRight="4dp"
            android:layout_marginTop="3dp"
            android:layout_marginBottom="5dp"
            android:layout_weight="1" >
            <EditText
                android:id="@+id/viewer_search"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:hint="@string/hint_search"
                android:background="@android:color/white"
                android:drawableLeft="@android:drawable/ic_menu_search"
                android:inputType="text"
                android:paddingLeft="4dp"
                android:selectAllOnFocus="true" >
            </EditText>
            <ImageView
                android:id="@+id/viewer_searchGo"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" 
                android:layout_alignTop="@id/viewer_search"
                android:layout_alignRight="@id/viewer_search"
                android:src="@android:drawable/ic_menu_send"
                android:visibility="invisible" >
            </ImageView> …
Run Code Online (Sandbox Code Playgroud)

expand android landscape android-edittext

4
推荐指数
1
解决办法
1540
查看次数

如何在小屏幕布局上禁用横向

我允许所有可能的方向为我的应用程序的肖像和风景(小 - 正常 - 大 - xlarge),但在小屏幕上测试后,我只是不喜欢它是如何出现所以,我正在尝试do是禁用小布局的横向.有没有办法做到这一点 ?

我发现只是对清单文件进行了更改,但我相信通过重新配置清单,我会将更改应用于所有布局.

java layout android landscape

4
推荐指数
1
解决办法
1210
查看次数

如何在横向模式下使用TouchID?

我想在我的应用程序中使用TouchID,仅在横向模式下.一切正常,但身份验证警报仅在纵向模式下显示.我该怎么办?

这是我的代码:

LAContext *myContext = [[LAContext alloc] init];
NSError *authError = nil;
NSString *myLocalizedReasonString = [[NSString alloc] initWithUTF8String: title];

if ([myContext canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:&authError]) {
         [myContext evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics
                   localizedReason:myLocalizedReasonString
                             reply:^(BOOL success, NSError *error) {
                                 if (success) {
                                     // User authenticated successfully, take appropriate action
                                     NSLog(@"Authenticated using Touch ID.");
                                     //do something
                                 } else {
                                     // User did not authenticate successfully, look at error and take appropriate action
                                     if (authError.code == kLAErrorUserFallback) {
                                         NSLog(@"User tapped Enter Password");
                                     } else if (authError.code == kLAErrorUserCancel) { …
Run Code Online (Sandbox Code Playgroud)

landscape fingerprint ios8

4
推荐指数
1
解决办法
723
查看次数

使用 classoption:landscape 时无法从 R markdown 生成横向的 microsoft word 文档

使用 RStudio 和 Rmarkdown 时,我无法生成横向文档。

R 是 3.4.2 版 RStudio 是 0.98.1103 版

我无法更改这些,因为它们是我运行程序的集群上的最新版本。

编织文件后,我确实得到了一个文件(以纵向形式),但是收到以下错误消息:

Output created: test_landscape.docx
Warning message:
In (function (toc = FALSE, toc_depth = 3, fig_width = 5, fig_height = 4,  :
  table of contents for word_document requires pandoc >= 1.14
Run Code Online (Sandbox Code Playgroud)

可重现的代码在这里:

---
title: "test_landscape"
author: "Name"
date: "09/10/2018"
output: word_document
classoption: landscape
---

Test for landscape orientation

```{r}
summary(cars)
```

You can also embed plots, for example:

```{r, echo=FALSE}
plot(cars)
```

Note that the `echo = …
Run Code Online (Sandbox Code Playgroud)

landscape orientation r-markdown

4
推荐指数
1
解决办法
4235
查看次数

如何在非全屏横向模式下为切口/凹口区域着色

这是在横向模式下拍摄的两张图像。一种是全屏模式,另一种是普通模式。我试图解决的问题是如何为您在正常视图中看到的左侧白色区域着色。我希望颜色与应用程序的其余部分相同。无需担心全屏视图与纵向模式下的正常视图,效果很好。关注的只是横向模式。

有没有人成功地在横向模式下为有凹口的设备的左侧着色?

左侧凹口顶部和底部的白色区域的示例。 左侧凹口顶部和底部的白色区域的示例。

不用担心全屏模式。 工作正常。 不用担心全屏模式。工作正常。

android landscape android-cutout

4
推荐指数
1
解决办法
1501
查看次数

在单个四开 PDF 输出中创建多页面方向

这个想法是复制rmarkdownin上的 PDF 输出quarto,在本例中,是在单个文档上创建多页方向。我可以通过使用这个技巧rmarkdown轻松做到这一点。但是,我无法在四开本中执行此操作,它会不断发送错误消息

compilation failed- error 
Undefined control sequence.
l.201 \blandscape
Run Code Online (Sandbox Code Playgroud)

这是我的代码:

---
title: "Portrait and Landscape"
format:
  pdf:
    include-in-header:
      - packages.tex
---

# Quarto

Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see <https://quarto.org>.

\newpage
\blandscape

# Running Code

When you click the **Render** button a document will be generated that includes both content and the output of embedded code. You …
Run Code Online (Sandbox Code Playgroud)

pdf latex landscape quarto

4
推荐指数
1
解决办法
2123
查看次数

如何在android中的方向更改中加载不同的xml文件

任何人都可以告诉如何在用户更改android中的设备方向时加载不同的xml文件?

例如,我在我的应用程序中使用配置文件屏幕.在纵向模式下,用户提供"用户名"值,之后我将方向更改为横向,现在我必须加载不同的xml,以便用户在landsacpe模式下给出值.

可能吗?

谢谢

编者注:英语似乎不是他的第一语言.

android landscape portrait orientation

3
推荐指数
1
解决办法
3890
查看次数

区分两种景观模式

将Android设备旋转到横向模式时,它可以位于2个不同的位置,从设备的角度来看,底部按钮可以在左侧或右侧.有没有办法区分这两种模式?无论是通过onConfigurationChanged还是通过View.onSizeChanged我都得到了相同的结果(很明显),因为设备在横向上并且两种"模式"的分辨率相同(在我的情况下为800x480).

谢谢

android landscape

3
推荐指数
1
解决办法
321
查看次数

Android设备onConfigurationChanged事件不处理方向

我有一个活动,在活动启动时,我需要在lanscape中更改方向,然后我想在用户旋转设备时处理两个方向更改,但是一旦改变方向,稍后就不会改变方向.这是我的代码请帮忙

    public class Hls extends Activity {

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_hls);

    setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);


}



@Override
public void onConfigurationChanged(Configuration newConfig) {
    super.onConfigurationChanged(newConfig);

    Log.v("new orientation", "yes");

    if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT)
    {
        Toast.makeText(this, "portrait", Toast.LENGTH_LONG).show();
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
    }
    if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE)
    {
        Toast.makeText(this, "landscape", Toast.LENGTH_LONG).show();
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
    } 

}
Run Code Online (Sandbox Code Playgroud)

configuration android landscape portrait orientation

3
推荐指数
1
解决办法
2万
查看次数