SeekBar Android 崩溃 Java
SeekBar Android crash Java
我刚开始使用 android studio 学习 android 开发,我完成了 "Starting another activity"用它。
(该教程是关于显示另一个 activity 发送的文本)
所以我添加了一个 seekBar 以更改文本大小。在我使用意图将文本发送到另一个 activity 后它崩溃了,但是如果我删除 seekBar 侦听器,它工作正常。
DisplayMessageActivity.java:
package com.keddy.myfirstapp;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.content.Intent;
import android.widget.SeekBar;
import android.widget.TextView;
import android.widget.Toast;
public class DisplayMessageActivity extends ActionBarActivity {
public SeekBar _seekbar;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//Getting the intent received by some other activity
Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);
//Text view initialization
final TextView textView = new TextView(this);
textView.setTextSize(40);
textView.setText(message);
//Showing text on screen
setContentView(textView);
_seekbar = (SeekBar)findViewById(R.id.seekBar1);
_seekbar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
@Override
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
Toast.makeText(getApplicationContext(),"Progress Changing",Toast.LENGTH_SHORT).show();
}
@Override
public void onStartTrackingTouch(SeekBar seekBar) {
Toast.makeText(getApplicationContext(),"Started Tracking",Toast.LENGTH_SHORT).show();
}
@Override
public void onStopTrackingTouch(SeekBar seekBar) {
Toast.makeText(getApplicationContext(),"Progress Stopped Changing",Toast.LENGTH_SHORT).show();
}
});
}
我只包含了 onCreate() 方法,因为这是我唯一改变的地方。
activity_display_message.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="com.keddy.myfirstapp.DisplayMessageActivity">
<SeekBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/seekBar1"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_alignParentStart="true"
android:indeterminate="false"
android:max="100"
/>
</RelativeLayout>
我四处搜索,发现原因是 NullPointerException,但我不知道如何解决它,因为我没有 Java 和 Android 开发经验。
如果您找到解决方案,请提供:
- 代码示例
- 如何避免再次发生
- 为什么会这样
如有任何帮助,我们将不胜感激。
改变
setContentView(textView);
到
setContentView(R.layout.activity_display_message);
你必须 setContentView(...)
然后添加 _seekbar = (SeekBar)findViewById(R.id.seekBar1);
原因是您要在内容中添加 textview
i.e. setContentView(textview);
您的 activity 无法找到 seekbar1 视图。这就是您的应用崩溃的原因。
不要在 Javacode 中添加 textview 添加 xml 并以与使用 seekbar 相同的方式使用它,并将 setContentView(textView) 更改为 setContentView(R.layout.your_xml_file_name);
我刚开始使用 android studio 学习 android 开发,我完成了 "Starting another activity"用它。 (该教程是关于显示另一个 activity 发送的文本)
所以我添加了一个 seekBar 以更改文本大小。在我使用意图将文本发送到另一个 activity 后它崩溃了,但是如果我删除 seekBar 侦听器,它工作正常。
DisplayMessageActivity.java:
package com.keddy.myfirstapp;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.content.Intent;
import android.widget.SeekBar;
import android.widget.TextView;
import android.widget.Toast;
public class DisplayMessageActivity extends ActionBarActivity {
public SeekBar _seekbar;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//Getting the intent received by some other activity
Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);
//Text view initialization
final TextView textView = new TextView(this);
textView.setTextSize(40);
textView.setText(message);
//Showing text on screen
setContentView(textView);
_seekbar = (SeekBar)findViewById(R.id.seekBar1);
_seekbar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
@Override
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
Toast.makeText(getApplicationContext(),"Progress Changing",Toast.LENGTH_SHORT).show();
}
@Override
public void onStartTrackingTouch(SeekBar seekBar) {
Toast.makeText(getApplicationContext(),"Started Tracking",Toast.LENGTH_SHORT).show();
}
@Override
public void onStopTrackingTouch(SeekBar seekBar) {
Toast.makeText(getApplicationContext(),"Progress Stopped Changing",Toast.LENGTH_SHORT).show();
}
});
}
我只包含了 onCreate() 方法,因为这是我唯一改变的地方。
activity_display_message.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="com.keddy.myfirstapp.DisplayMessageActivity">
<SeekBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/seekBar1"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_alignParentStart="true"
android:indeterminate="false"
android:max="100"
/>
</RelativeLayout>
我四处搜索,发现原因是 NullPointerException,但我不知道如何解决它,因为我没有 Java 和 Android 开发经验。
如果您找到解决方案,请提供:
- 代码示例
- 如何避免再次发生
- 为什么会这样
如有任何帮助,我们将不胜感激。
改变
setContentView(textView);
到
setContentView(R.layout.activity_display_message);
你必须 setContentView(...)
然后添加 _seekbar = (SeekBar)findViewById(R.id.seekBar1);
原因是您要在内容中添加 textview
i.e. setContentView(textview);
您的 activity 无法找到 seekbar1 视图。这就是您的应用崩溃的原因。
不要在 Javacode 中添加 textview 添加 xml 并以与使用 seekbar 相同的方式使用它,并将 setContentView(textView) 更改为 setContentView(R.layout.your_xml_file_name);