启动后简单的Android应用程序崩溃

时间:2015-01-06 08:15:23

标签: android xml crash

我试图制作一个简单的Android应用程序,它将触发webserver打开大门,一切正常,直到我做了一些设计(而不是java)更改。现在我甚至无法正确启动应用程序。

如果您有任何想法,请查看并告诉我。它尝试了apk @ Galaxy S3和Note 3

的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="wstrends.brana" >

    <uses-permission android:name="android.permission.INTERNET" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/logo"
        android:label="WS trends Gatekeeper"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="WS trends Gatekeeper" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>    

activity_main.xml中

<RelativeLayout 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" android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">


    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Otevřít bránu"
        android:id="@+id/button"
        android:layout_below="@+id/password"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="43dp" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text="Pro prokračování vložte heslo"
        android:id="@+id/upper"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="29dp"
        android:password="false"
        android:textColor="#bc000000" />

    <EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:inputType="textPassword"
        android:ems="10"
        android:id="@+id/password"
        android:singleLine="true"
        android:password="true"
        android:autoText="false"
        android:layout_below="@+id/upper"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="39dp"
        android:hint="Heslo" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:id="@+id/content"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true"
        android:singleLine="false" />

</RelativeLayout>

styles.xml

<resources>
    <!-- inherit from the material theme -->
    <style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">
        <!-- Main theme colors -->
        <item name="android:actionBarStyle">@style/MyActionBar</item>
        <item name="android:textColorPrimary">#fff</item>
    </style>

    <!-- ActionBar styles -->
    <style name="MyActionBar"
        parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse">
        <item name="android:background">#CA0700</item>
    </style>

</resources>

由于

2 个答案:

答案 0 :(得分:1)

尝试将styles.xml更改为以下内容。主题必须是Theme.AppCompat

的后代
<resources>

    <!-- inherit from the material theme -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Main theme colors -->
        <item name="android:actionBarStyle">@style/MyActionBar</item>
        <item name="actionBarStyle">@style/MyActionBar</item> <!-- For support lib compat -->
        <item name="android:textColorPrimary">#fff</item>
    </style>

    <!-- ActionBar styles -->
    <style name="MyActionBar"
        parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse">
        <item name="android:background">#CA0700</item>
    </style>

</resources>

答案 1 :(得分:0)

<强>解决方案:

在styles.xml中没有任何变化,但MainActivity.java中的一点变化修复了这个

公共类MainActivity将ActionBarActivity 扩展到公共类MainActivity扩展活动