AS更改初始布局遇到的问题

Posted CSU迦叶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AS更改初始布局遇到的问题相关的知识,希望对你有一定的参考价值。

在这里插入图片描述
将所有的simple.xml.ftl的内容都改成

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
 
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!" />
 
 
</LinearLayout>  

但是新建一个工程,xml的初始布局还是
在这里插入图片描述

解决方案:手写java代码

以上是关于AS更改初始布局遇到的问题的主要内容,如果未能解决你的问题,请参考以下文章

Android在片段中动态更改部分布局的最佳方法

Android - 如何更改导航抽屉中的片段

更改片段(子片段)时 RecyclerView 中的奇怪叠加

android片段在方向更改时创建了两次

在片段中在运行时更改方向时更改布局而不重新创建视图

为不同方向使用不同布局时,在方向更改时保存片段状态