gpt4 book ai didi

android - 应用程序不使用全屏宽度(Actionbar)

转载 作者:行者123 更新时间:2023-11-29 15:38:17 25 4
gpt4 key购买 nike

当我的应用程序(附件)宽度出现问题时,我遇到了问题。似乎没有使用屏幕的整个宽度,因为我使用的是操作栏,并且“设置”菜单出现的空间占用了屏幕的剩余宽度。有什么方法可以使用全宽,因为我根本就没有使用“设置”菜单?

app_bar_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.AppBarLayout>

<include layout="@layout/content_main" />

</android.support.design.widget.CoordinatorLayout>

content_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.example.simple.activities.MainActivity"
tools:showIn="@layout/app_bar_main">

<RelativeLayout
android:id="@+id/master_fragment"
android:layout_width="368dp"
android:layout_height="495dp"
tools:layout_editor_absoluteX="8dp"
tools:layout_editor_absoluteY="8dp">

</RelativeLayout>
</android.support.constraint.ConstraintLayout>

current_fragment.xml:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.simple.fragments.Notifier">

<!-- TODO: Update blank fragment layout -->

<TabHost
android:id="@+id/tab_host"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="match_parent">

<include android:id="@+id/layout1"
layout="@layout/activity_hour_notification"
android:layout_width="match_parent"
android:layout_height="match_parent"></include>

<include android:id="@+id/layout2"
layout="@layout/activity_minute_notification"
android:layout_width="match_parent"
android:layout_height="match_parent"></include>

</FrameLayout>
</LinearLayout>
</TabHost>
</FrameLayout>

感谢您对此的任何帮助!

enter image description here

最佳答案

您为布局指定了宽度和高度常量,对于 ConstraintLayout match_parent 指定 0dp 并添加所有必要的约束

<RelativeLayout
android:id="@+id/master_fragment"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent"
>

</RelativeLayout>

关于android - 应用程序不使用全屏宽度(Actionbar),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45705742/

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