gpt4 book ai didi

android - 不显示 Android 中的所有布局组件

转载 作者:行者123 更新时间:2023-11-29 21:38:12 24 4
gpt4 key购买 nike

这是我项目的示例 adandroid 布局,它在纵向 View 中看起来很棒,但在横向模式下它没有显示所有布局组件。

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"

android:fillViewport="true" >

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:background="#696969"
android:gravity="center"
android:lines="1"
android:text="BAR 1"
android:textAppearance="?android:attr/textAppearanceLarge" />

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/textView2"
android:layout_below="@+id/textView1"
android:scrollbars="horizontal" >

<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="T"
android:textSize="40sp" />

<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/button2"
android:layout_centerHorizontal="true"
android:layout_marginTop="16dp"
android:text="Not" />

<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/textView3"
android:layout_alignTop="@+id/button2"
android:layout_marginRight="22dp"
android:layout_toLeftOf="@+id/button2"
android:text="T"
android:textSize="40sp" />

<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/textView3"
android:layout_alignTop="@+id/button2"
android:layout_marginLeft="20dp"
android:layout_toRightOf="@+id/button2"
android:text="T"
android:textSize="40sp" />

<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/textView3"
android:layout_alignBottom="@+id/textView3"
android:layout_alignLeft="@+id/button3"
android:layout_alignRight="@+id/button3"
android:text="Working" />

<TextView
android:id="@+id/textView5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/textView3"
android:layout_alignBottom="@+id/textView3"
android:layout_alignLeft="@+id/button1"
android:layout_alignRight="@+id/button1"
android:text="Why" />

</RelativeLayout>

<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:background="#696969"
android:gravity="center"
android:lines="1"
android:text="BAR 2"
android:textAppearance="?android:attr/textAppearanceLarge" />
</RelativeLayout>

</ScrollView>

纵向 View http://i.stack.imgur.com/XlVlx.png

横向 View http://i.stack.imgur.com/DfMVA.png

我必须使用 android:fillViewport="true"来展开布局,请帮我解决这个问题。

  1. 以横向模式显示完整布局
  2. 滚动不工作

谢谢。

解决方案:)

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/test"
android:lines="1"
android:text="@string/bar_1"
android:textAppearance="?android:attr/textAppearanceLarge" />

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >

<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/button2"
android:layout_alignRight="@+id/button2"
android:layout_below="@+id/button2"
android:layout_marginTop="15dp"
android:text="TextView" />

<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_marginTop="15dp"
android:gravity="center"
android:padding="10dp"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:text="T"
android:textSize="40sp" />
</RelativeLayout>
</LinearLayout>

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:orientation="vertical" >

<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/test"
android:lines="1"
android:text="@string/bar_1"
android:textAppearance="?android:attr/textAppearanceLarge" />

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/button2"
android:layout_alignRight="@+id/button2"
android:layout_below="@+id/button2"
android:layout_marginTop="16dp"
android:text="TextView" />

<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="15dp"
android:gravity="center"
android:text="T"
android:textSize="40sp" />
</RelativeLayout>
</LinearLayout>
</LinearLayout>

</ScrollView>

最佳答案

您的 textView2 显示在垂直中心,因此它始终位于布局的中间。在纵向中,它会在前面的文本上绘制自己。

为什么不使用垂直方向的 LinearLayout?

关于android - 不显示 Android 中的所有布局组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17816954/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com