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更改初始布局遇到的问题的主要内容,如果未能解决你的问题,请参考以下文章