如何根据搜索栏的进度使文本视图可见
How to make textviews visible depending on progress of seekbar
我试图根据我的搜索栏的进度(一次一个可见)使 4 个不同的文本视图可见。我将文本视图设置为不可见,并将搜索栏最大值设置为 100。
它适用于低于 24 的值,但一旦搜索栏超过 25,应用程序就会崩溃。
我是一个绝对的初学者程序员,并且试图自学,我考虑过使用 while 循环,但我也不能让它工作。
如有任何帮助,我将不胜感激。
代码:
public class MainActivity extends AppCompatActivity {
SeekBar seekBar;
TextView textView;
TextView textView2;
TextView textView3;
TextView textView4;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
seekBar = findViewById(R.id.seekBar);
seekBar.setMax(100);
textView = (TextView)findViewById(R.id.textView);
button = (Button)findViewById(R.id.button);
seekBar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
@Override
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
if (seekBar.getProgress() < 24) {
textView.setVisibility(View.VISIBLE);
} else if (seekBar.getProgress() >= 25 && seekBar.getProgress() < 49) {
textView2.setVisibility(View.VISIBLE);
} else if (seekBar.getProgress() >= 50 && seekBar.getProgress() < 74) {
textView3.setVisibility(View.VISIBLE);
} else if (seekBar.getProgress() >= 75) {
textView4.setVisibility(View.VISIBLE);
}
activity_main:
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</com.google.android.material.appbar.AppBarLayout>
<include layout="@layout/content_main" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
app:srcCompat="@android:drawable/ic_dialog_email" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
您已使用 findViewById
到 link 资源到您的 textView
对象。您需要对 textView2
、textView3
和 textView4
执行相同的操作。当您尝试在 textView2
.
上调用方法时,我假设您得到的是 NullPointerException
我试图根据我的搜索栏的进度(一次一个可见)使 4 个不同的文本视图可见。我将文本视图设置为不可见,并将搜索栏最大值设置为 100。 它适用于低于 24 的值,但一旦搜索栏超过 25,应用程序就会崩溃。
我是一个绝对的初学者程序员,并且试图自学,我考虑过使用 while 循环,但我也不能让它工作。
如有任何帮助,我将不胜感激。
代码:
public class MainActivity extends AppCompatActivity {
SeekBar seekBar;
TextView textView;
TextView textView2;
TextView textView3;
TextView textView4;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
seekBar = findViewById(R.id.seekBar);
seekBar.setMax(100);
textView = (TextView)findViewById(R.id.textView);
button = (Button)findViewById(R.id.button);
seekBar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
@Override
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
if (seekBar.getProgress() < 24) {
textView.setVisibility(View.VISIBLE);
} else if (seekBar.getProgress() >= 25 && seekBar.getProgress() < 49) {
textView2.setVisibility(View.VISIBLE);
} else if (seekBar.getProgress() >= 50 && seekBar.getProgress() < 74) {
textView3.setVisibility(View.VISIBLE);
} else if (seekBar.getProgress() >= 75) {
textView4.setVisibility(View.VISIBLE);
}
activity_main:
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</com.google.android.material.appbar.AppBarLayout>
<include layout="@layout/content_main" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
app:srcCompat="@android:drawable/ic_dialog_email" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
您已使用 findViewById
到 link 资源到您的 textView
对象。您需要对 textView2
、textView3
和 textView4
执行相同的操作。当您尝试在 textView2
.
NullPointerException