簡體   English   中英

XML更改布局按鈕崩潰的應用程序

[英]XML change Layout button crashing app

我做了一個簡單的應用程序,因為我只是從android開始。 我做了一個按鈕來更改布局,但是經過測試,它每次都會使應用程序崩潰。 這是我的代碼

package nathanschmidt.nathan;


    import android.support.v7.app.ActionBarActivity;
    import android.os.Bundle;
    import android.view.Menu;
    import android.view.MenuItem;
    import android.widget.NumberPicker;
    import android.widget.TextView;
    import android.graphics.Color;
    import android.content.Intent;
    import android.widget.Button;
    import android.view.View;
    import android.view.View.OnClickListener;
public class MainActivity extends ActionBarActivity {
TextView numberView;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    numberView = (TextView) findViewById(R.id.numberview);
    NumberPicker numberPicker = (NumberPicker) findViewById(R.id.numberPicker);
    numberPicker.setMaxValue(10);
    numberPicker.setMinValue(0);
    numberPicker.setWrapSelectorWheel(true);
    numberPicker.setOnValueChangedListener(
            new NumberPicker.OnValueChangeListener() {
                @Override
                public void onValueChange(NumberPicker picker, int oldVal, int newVal) {

                    int color;
                    if (newVal < 1) {
                        color = Color.parseColor("#000000");
                    } else if (newVal < 2) {
                        color = Color.parseColor("#01093B");
                    } else if (newVal < 3) {
                        color = Color.parseColor("#000C57");
                    } else if (newVal < 4) {
                        color = Color.parseColor("#000F73");
                    } else if (newVal < 5) {
                        color = Color.parseColor("#00128a");
                    } else if (newVal < 6) {
                        color = Color.parseColor("#00159E");
                    } else if (newVal < 7) {
                        color = Color.parseColor("#0017B0");
                    } else if (newVal < 8) {
                        color = Color.parseColor("#001AC4");
                    } else if (newVal < 9) {
                        color = Color.parseColor("#001FE8");
                    } else {
                        color = Color.parseColor("#0022FF");
                    }

                    numberView.setTextColor(color);

                }
            });
    super.onCreate(savedInstanceState);
    setContentView(R.layout.about);

    // Watch for button clicks.
    Button button = (Button)findViewById(R.id.change);
    button.setOnClickListener(submitListener);
}

private OnClickListener submitListener = new OnClickListener() {
    public void onClick(View v) {

    }
};

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"
android:background="@drawable/os2">


<TextClock
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/numberview"
    android:textSize="100dp"
    android:layout_alignParentBottom="true"
    android:layout_alignParentStart="true" />

<NumberPicker
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/numberPicker"
    android:layout_alignParentTop="true"
    android:layout_alignParentEnd="true"/>


<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="change"
    android:id="@+id/change"
    android:layout_below="@+id/numberPicker"
    android:layout_centerHorizontal="true" />

實際上崩潰的是這兩行代碼

super.onCreate(savedInstanceState);
setContentView(R.layout.about);

您在這里兩次調用Activity類的onCreate()方法都不是一個好習慣,並且您正在更改setContentView()方法中的布局,然后在使用當前從當前Activity布局從activity_main布局初始化的numberView時關於布局。 我想知道您得到的異常是NullPointerException還是IllegalStateException

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM