- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
您好,我的代码出现错误。你能告诉我如何解决这个问题吗?
样式代码
<style name="AppTheme" parent="AppTheme.Base"/>
<style name="AppTheme.Base" parent="Theme.AppCompat.Light">
Activity 代码
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// To set the custom title with Button
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.create_account_screen_1);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,
R.layout.title_layout_with_two_button);
((TextView) findViewById(R.id.myTitle)).setText(R.string.create_acc);
// ((Button) findViewById(R.id.back_button)).setText(R.string.login);
((Button) findViewById(R.id.right_button)).setVisibility(View.INVISIBLE);
list 代码
<activity android:name=".CreateAccountActivity1"
android:theme="@style/AppTheme"/>
** create_account_screen_1**
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#fafafa"
android:orientation="vertical" >
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="@android:color/black" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="right"
android:orientation="vertical"
android:paddingRight="5dp"
android:paddingTop="3dp"
android:id="@+id/scrollview_bottom">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="5sp"
android:textSize="@dimen/default_size"
android:textColor="@color/black"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="@string/step_1_2"
android:visibility="gone" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="5sp"
android:layout_marginTop="10sp"
android:textSize="@dimen/default_size"
android:textColor="@color/black"
android:textAppearance="?android:attr/textAppearanceMedium"
android:clickable="true"
android:onClick="whatsThisClick"
android:text="@string/what_this"
android:visibility="gone" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="280sp"
android:paddingTop="5sp"
android:gravity="center_horizontal"
android:layout_gravity="center_horizontal"
android:orientation="vertical" >
<TextView
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="@string/user_name"
android:textSize="@dimen/default_size"
android:textColor="@color/black"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_marginTop="5dp"/>
<EditText
android:id="@+id/user_name"
android:layout_width="fill_parent"
android:textSize="@dimen/default_size"
android:singleLine="true"
android:inputType="textEmailAddress"
android:layout_marginTop="4dp"
android:layout_height="40dp"
android:background="@drawable/rouned_corner"
android:paddingLeft="5dp" >
<requestFocus />
</EditText>
<TextView
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="@string/dob"
android:textSize="@dimen/default_size"
android:textColor="@color/black"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_marginTop="5dp" />
<EditText
android:id="@+id/dobText"
android:layout_width="fill_parent"
android:textSize="@dimen/default_size"
android:singleLine="true"
android:inputType="date"
android:hint="@string/dateMMDDYYYY"
android:maxLength="10"
android:clickable="false"
android:focusable="true"
android:layout_marginTop="4dp"
android:layout_height="40dp"
android:background="@drawable/rouned_corner"
android:paddingLeft="5dp" > <!-- android:onClick="onDobTextClick" -->
</EditText>
<TextView
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="@string/password"
android:textSize="@dimen/default_size"
android:textColor="@color/black"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_marginTop="5dp" />
<EditText
android:id="@+id/password"
android:layout_width="fill_parent"
android:textSize="@dimen/default_size"
android:singleLine="true"
android:inputType="number"
android:maxLength="4"
android:layout_marginTop="4dp"
android:layout_height="40dp"
android:background="@drawable/rouned_corner"
android:paddingLeft="5dp" >
</EditText>
<TextView
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="@string/conform_password"
android:textSize="@dimen/default_size"
android:textColor="@color/black"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_marginTop="5dp" />
<EditText
android:id="@+id/conform_password"
android:layout_width="fill_parent"
android:textSize="@dimen/default_size"
android:singleLine="true"
android:inputType="number"
android:maxLength="5"
android:layout_marginTop="4dp"
android:layout_height="40dp"
android:background="@drawable/rouned_corner"
android:paddingLeft="5dp"
android:layout_marginBottom="20dp" >
</EditText>
</LinearLayout>
</ScrollView>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#fafafa"
android:orientation="vertical"
android:gravity="bottom"
>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="@android:color/black" />
<LinearLayout
android:background="#fafafa"
android:layout_width="match_parent"
android:layout_height="60dp"
android:orientation="horizontal"
android:gravity="center"
android:visibility="visible" >
<Button
android:id="@+id/submitBtn"
android:layout_width="100dp"
android:layout_height="40dp"
android:background="@drawable/button_bg"
android:onClick="next"
android:text="@string/next"
android:textColor="@color/white"
android:textSize="@dimen/default_size"
android:textStyle="bold" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
上面的代码是我的布局文件。
日志猫错误
12-09 23:42:21.750: E/AndroidRuntime(10108): FATAL EXCEPTION: main
12-09 23:42:21.750: E/AndroidRuntime(10108): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.velantech.activity/com.velantech.activity.ForgotUserIDActivity}: android.util.AndroidRuntimeException: You cannot combine custom titles with other title features
12-09 23:42:21.750: E/AndroidRuntime(10108): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2059)
12-09 23:42:21.750: E/AndroidRuntime(10108): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2084)
12-09 23:42:21.750: E/AndroidRuntime(10108): at android.app.ActivityThread.access$600(ActivityThread.java:130)
12-09 23:42:21.750: E/AndroidRuntime(10108): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1195)
12-09 23:42:21.750: E/AndroidRuntime(10108): at android.os.Handler.dispatchMessage(Handler.java:99)
12-09 23:42:21.750: E/AndroidRuntime(10108): at android.os.Looper.loop(Looper.java:137)
12-09 23:42:21.750: E/AndroidRuntime(10108): at android.app.ActivityThread.main(ActivityThread.java:4745)
12-09 23:42:21.750: E/AndroidRuntime(10108): at java.lang.reflect.Method.invokeNative(Native Method)
12-09 23:42:21.750: E/AndroidRuntime(10108): at java.lang.reflect.Method.invoke(Method.java:511)
12-09 23:42:21.750: E/AndroidRuntime(10108): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
12-09 23:42:21.750: E/AndroidRuntime(10108): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
12-09 23:42:21.750: E/AndroidRuntime(10108): at dalvik.system.NativeStart.main(Native Method)
12-09 23:42:21.750: E/AndroidRuntime(10108): Caused by: android.util.AndroidRuntimeException: You cannot combine custom titles with other title features
12-09 23:42:21.750: E/AndroidRuntime(10108): at com.android.internal.policy.impl.PhoneWindow.requestFeature(PhoneWindow.java:227)
12-09 23:42:21.750: E/AndroidRuntime(10108): at com.android.internal.policy.impl.PhoneWindow.generateLayout(PhoneWindow.java:2601)
12-09 23:42:21.750: E/AndroidRuntime(10108): at com.android.internal.policy.impl.PhoneWindow.installDecor(PhoneWindow.java:2844)
12-09 23:42:21.750: E/AndroidRuntime(10108): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:252)
12-09 23:42:21.750: E/AndroidRuntime(10108): at android.app.Activity.setContentView(Activity.java:1867)
12-09 23:42:21.750: E/AndroidRuntime(10108): at com.velantech.activity.ForgotUserIDActivity.onCreate(ForgotUserIDActivity.java:54)
12-09 23:42:21.750: E/AndroidRuntime(10108): at android.app.Activity.performCreate(Activity.java:5008)
12-09 23:42:21.750: E/AndroidRuntime(10108): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1079)
12-09 23:42:21.750: E/AndroidRuntime(10108): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2023)
12-09 23:42:21.750: E/AndroidRuntime(10108): ... 11 more
最佳答案
您正在使用的主题 Theme.AppCompat.Light
包含此定义(在其父级中):
<item name="android:windowNoTitle">true</item>
所以主题说它没有标题,而您正尝试使用自定义标题。这是不兼容的。
您使用的主题包含操作栏,操作栏中的标题处理方式不同。参见 Styling the Action Bar.
编辑:没有操作栏的浅色主题的建议
要获得没有操作栏的“浅色”主题(这样您就可以使用自定义标题),这应该可行:
<style name="AppTheme" parent="Theme.AppCompat.Light">
<item name="android:windowActionBar">false</item>
<item name="android:windowNoTitle">false</item>
</style>
关于android.util.AndroidRuntimeException : You cannot combine custom titles with other title features,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27395263/
好的,所以我刚刚开始尝试将 BDD 用于我们正在进行的一些新开发,并且我为日志查看器功能写了一个这样的故事: 故事:用户查看工作流执行日志 As a user I want to review the
我正在尝试使用 TensorFlow 编写一个简单的深度机器学习模型。我正在使用我在 Excel 中制作的玩具数据集,只是为了让模型工作并接受数据。我的代码如下: import pandas as p
我是机器学习的初学者。我很困惑如何将数据集的不同特征组合成一个特征。 例如,我在 Python Pandas 数据框架中有一个数据集,其特征如下: movie unknown actio
我正在做一项功能调查,为一个研究项目做准备。 说出难以优化的主流语言或语言功能,以及为什么该功能值得或不值得付出代价,或者只是用轶事证据驳斥我下面的理论。在有人将其标记为主观之前,我要求提供语言或功能
这是一个有点哲学问题。我正在为我的软件添加一个小功能,我认为大多数用户都会使用它,但他们使用该软件的次数可能只有 10%。换句话说,该软件没有它 3 个月就很好,但是有 4 或 5 个用户要求它,我同
我开始使用 git flow。我创建了一个功能: git flow feature start eval 然后我做了一些工作并添加并提交了更改: git add (files) git commit
pull 请求是内置在 Git 中还是 GitHub 虚构的概念? 最佳答案 概念和该概念的实现之间存在区别。 “请求 pull ”的概念是 DVCS 系统有别于传统版本控制系统的部分原因。使用传统的
研究该主题,可以找到作者使用“词袋”模型进行图像分类/检索的论文,而其他人则使用“特征袋”模型进行类似任务。 尽管我对所涉及的方法有基本的了解(检测和提取视觉词、构建视觉词典、使用机器学习训练分类器)
有时一首歌会有不止一个艺术家。例如,Jay-z 的新歌“A Star is Born”以艺术家 Cole 为主角,因此在目录中会被列为“Jay-z(以 Cole 为主角)- A Star is Bor
This question already has an answer here: How do I 'pass down' feature flags to subdependencies in C
This question and answer演示当使用 scikit-learn 的专用特征选择例程之一执行特征选择时,可以按如下方式检索所选特征的名称: np.asarray(vectorize
例如,我定义了 2 个没有依赖关系的特性: [features] default = [] py2 = [] py3 = [] 基于选定的功能 (--features py3) 我想为依赖项 (cpy
我正在完成一个小型 Wordpress“杂志”类型网站的定制。由于我是 PHP 的新手,我遇到了一些需要帮助的问题。 我有一个“首屏,主要特色区域,包含 3 张图片”和帖子标题的小摘录。在首屏下,我在
我已经为 Windows 10 创建了一个 C# 应用程序。它是通过使用 WIX 生成的 MSI 安装的。但是,当它为一台机器上的一个用户安装时,并非出于我的意图,它不会为同一台机器上的其他用户安装。
在 ArcGIS Runtime Java API 文档中,有一个 identifyLayersAsync() method . 来自文档: Asynchronously identifies the
我是 GIT 和 GIT-Flow 的新手。 [在我的 python-django 项目上] 我做了什么: git flow feature start new_feature # perform s
我是 Angular 的新手,我正在尝试使用 Angular/d3 构建德国 map 。 map 数据存储在 Topojson 文件 plz_map_ger.json 中: { "type": "To
我一直在使用 503 服务不可用 或停机维护。 但是一些 http 客户端库,即 axios 将 503 视为可重试错误。 如果由于高负载而产生响应,则重试它是有意义的,但 503 也适合功能切换情况
要列出您希望包含在生成的 features.xml 中的一堆包,文档说: bundles File A properties file that contains a list of bund
我在 Visual Studio 2010 下开发 C# T4 预处理模板时遇到以下编译错误: A template containing a class feature must end with
我是一名优秀的程序员,十分优秀!