- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想为我的应用程序创建一个登录 Activity ,但当我在 AVD 上运行我的应用程序时,默认布局一直显示。
i don't want any blue on my layout, all i want in the yellow part
下面是我的布局文件
<?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"
android:weightSum="1"
android:paddingLeft="20dp"
android:paddingTop="20dp"
android:paddingRight="20dp"
android:paddingBottom="20dp"
android:background="@android:color/holo_orange_light">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="@string/mobile_money_market"
android:layout_weight="0.05"
android:textAlignment="center"
android:inputType="text"
android:textStyle="bold" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_weight="0.05"
android:text="@string/free_advertising"
android:textAlignment="center" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textEmailAddress"
android:ems="10"
android:id="@+id/editText1"
android:hint="Email..."
android:layout_marginTop="30dp" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:ems="10"
android:id="@+id/editText2"
android:hint="Password..."
android:layout_marginTop="20dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:id="@+id/item">
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/sign_in"
android:id="@+id/sign_in_button"
android:layout_weight="1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/sign_up"
android:id="@+id/sign_up_button"
android:background="@color/errorColor" />
</LinearLayout>
</LinearLayout>
我想知道如何从我的 Activity 中删除蓝色部分。我不希望 Mobile Money Market 这个名字出现两次,如上图所示。
我想从布局中删除默认的android Header(蓝色部分)。
my layout as it appears on my AVD
我需要帮助。有人可以建议我做什么或不做什么。提前致谢
最佳答案
您需要隐藏操作栏。最简单的方法是在 style.xml 文件中添加样式。像这样:
<resources>
<!-- No action bar theme -->
<style name="NoActionBar" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/blueDark</item>
<item name="colorPrimaryDark">@color/blueDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
</resources>
你注意到 parent 了吗? “NoActionBar”。然后在 list 中更改 Activity 的主题:
<activity
android:name="your.package.name.YourActivity"
android:label="@string/application_name"
android:theme="@style/NoActionBar" />
关于android - 如何更改android studio中的默认布局(activity_main),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39896844/
!!请注意!!错误不会发生在setContentView()方法的调用中。在搜索答案时,我发现有人在这里发布了完全相同的问题(完全相同的代码可能来自完全相同的教程源和所有内容),但它被标记为重复并错误
我试图在 TextView 下包含一个 View ,TextView 显示在图形布局中而不是 View 中。我附上了代码和图形布局。谁能帮帮我,出了什么问题,我该如何解决...
我刚刚开始学习 Android 应用程序开发。我有 Android Studio 1.4。在我的布局文件夹中,我有两个 XML 文件(content_main.xml 和 activity_main.
为什么我必须两次告诉我的 Activity 它的布局应该是什么? protected void onCreate(Bundle savedInstanceState) { super.onCr
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我是一名新的 Android 开发人员,陷入了这个错误,我已经阅读了其他线程,按照说明进行操作,但没有办法解决它。这是文件 res/layout/activity_main.xml: 在
我是 android 的初学者,我试图在 android 上制作一个简单的应用程序,但这个“activity_main”错误没有被清除。我已经浏览了所有可用的答案 import android.R;
我正在尝试制作一个英制到公制的转换应用程序,一切进展顺利,直到我遇到了 Android 模拟器的问题。模拟器中的布局完全搞砸了,我不知道为什么。 /image/ygiLK.jpg 编辑: 整个acti
我想为我的应用程序创建一个登录 Activity ,但当我在 AVD 上运行我的应用程序时,默认布局一直显示。 i don't want any blue on my layout, all i wa
以前的人也有过同样的错误信息,但是解决办法一直是去掉或者修改一些import "android.R"。我没有这样的导入所以我真的迷路了 我正在尝试让示例 android google map 程序运行
我正在关注 this tutorial并且无法弄清楚如何解决错误“Unresolved Reference: activity_main”和“Unresolved Reference: app_nam
如何从设计选项卡将 ID 添加到最新 Android Studio 的文本中?我可以通过 XML 文本选项卡创建它。我只是找不到如何在设计选项卡中执行此操作。 在设计环境中,我只能编辑文本或从Text
我刚刚开始使用 android,我的 hello world 应用程序遇到了麻烦,问题首先是它说 R 无法解决,但我能够克服,因为没有 R.java 文件,我后来从互联网现在有三个错误1.activi
我正在尝试在 activity_main.xml 中添加一个简单的 TextView ,但它不允许我将其添加到自定义位置(就像从调色板中拖放一样)。相反,它只是给我这些绿色的虚线框,如下图所示: 我该
我有一个布局R.layout.activity_main,我必须向这个布局添加另一个布局,但使用java代码。 所以我实现了这样的东西: LinearLayout layout = new Linea
我已经创建了 android 应用程序项目,但如果我尝试保存“activity_main.xml”,它就是这样说的。 留言 原始文件“activity_main.xml”已被删除或不可访问。 如果我单
我正在尝试使用一些在线教程来解决多种布局。问题是只要只有一个 XML 文件,我的程序就可以正确构建和编译。当我添加多个 XML 文件时,我收到错误说 setContentView(R.layout.a
我是 android studio 的新手,当我尝试将代码添加到 activity_main.xml 时,我只看到设计和蓝图。我如何获得代码? 我附上了我看到的截图。 最佳答案 只需使用ctrl+b
嗨,我对 android studio 有点陌生,我试图从 youtube 上的教程中学习,但我似乎做不到,因为 activity_main.xml 没有打开并停留在等待构建完成......我已经等了
为 android 制作一个计算器程序,我有一个 xml 文件,其中包含编写该程序所需的所有按钮。它出现在 android studio 的设计部分,但是当我尝试在 android 手机(不是模拟
我是一名优秀的程序员,十分优秀!