在搜索城市之前使显示数据文本视图不可见
Posted
技术标签:
【中文标题】在搜索城市之前使显示数据文本视图不可见【英文标题】:Make display data textviews invisible until a city is searched 【发布时间】:2021-08-22 18:46:10 【问题描述】:我在我的天气应用程序上设置了我的文本视图,以便在我的搜索面板上搜索时显示城市的数据(即temp_out.setText(response.body().getMain().getTemp() + " ℃"););
。它工作得很好,只是用于显示这些数据的文本视图仍然反映在应用程序上(即@ 987654327@)。我想将它设置为 textviews 在搜索城市之前是不可见的,然后该城市的数据将显示在 textview 部分。
这些是我想要实现的目标的插图:
打开应用时应该是不可见的(带有红色勾号的部分):
那么在线搜索城市后应该会显示这个数据(红色勾号部分):
到目前为止,我已经尝试使用此代码findViewById(R.id.textView9).setVisibility(View.GONE)
;正在为我的一个文本视图(time_field
)进行活动。
在搜索城市之前和之后完全不可见,并且还给出了这个例外:
java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.TextView.setText(java.lang.CharSequence)' on a null object reference
at com.viz.lightweatherforecast.Activity.HomeActivity$2$1.onResponse(HomeActivity.java:112)
at retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1.lambda$onResponse$0$DefaultCallAdapterFactory$ExecutorCallbackCall$1(DefaultCallAdapterFactory.java:89)
at retrofit2.-$$Lambda$DefaultCallAdapterFactory$ExecutorCallbackCall$1$3wC8FyV4pyjrzrYL5U0mlYiviZw.run(Unknown Source:6)
at android.os.Handler.handleCallback(Handler.java:873)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:193)
at android.app.ActivityThread.main(ActivityThread.java:6819)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:497)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:912)
然后我尝试在 layout.xml android:visibility="gone"
和 android:visibility="invisible"
上使用相同的文本视图。它在搜索城市之前和之后也是不可见的,但也不例外。
我别无选择,只能问一下推荐的方法是什么?
以下是用于显示数据的文本视图:
这是给我的片段的:
public void onResponse(@NonNull Call<Example> call, @NonNull Response<Example> response)
try
assert response.body() != null;
current_temp.setText(response.body().getMain().getTemp() + " ℃");
current_output.setText(response.body().getWeather().get(0).getDescription());
rise_time.setText(response.body().getSys().getSunrise() + " ");
set_time.setText(response.body().getSys().getSunset() + " ");
temp_out.setText(response.body().getMain().getTemp() + " ℃");
Press_out.setText(response.body().getMain().getPressure() + " hpa");
Humid_out.setText(response.body().getMain().getHumidity() + " %");
Ws_out.setText(response.body().getWind().getSpeed() + " Km/h");
Visi_out.setText(response.body().getVisibility() + " m");
Cloud_out.setText(response.body().getClouds().getAll() + " %");
catch (Exception e)
Log.e("TAG", "No City found");
Toast.makeText(getActivity(), "No City found", Toast.LENGTH_SHORT).show();
这是我的活动:
public void onResponse(@NonNull Call<Example> call, @NonNull Response<Example> response)
try
assert response.body() != null;
time_field.setText("Last Updated:" + " " + response.body().getDt());
catch (Exception e)
time_field.setText("Last Updated: Unknown");
Log.e("TAG", "No City found");
Toast.makeText(HomeActivity.this, "No City found", Toast.LENGTH_SHORT).show();
我不知道是否需要发布完整代码,因为我正在尽最大努力关注https://***.com/help/minimal-reproducible-example,但如果 需要,请告诉我。
【问题讨论】:
【参考方案1】:在XML文件中添加android:visibility="gone"
和你的 java 类
public void onResponse(@NonNull Call<Example> call, @NonNull Response<Example> response)
try
assert response.body() != null;
current_temp.setVisibility(View.VISIBLE);
current_temp.setText(response.body().getMain().getTemp() + " ℃");
//all other stuffs
catch (Exception e)
Log.e("TAG", "No City found");
current_temp.setVisibility(View.GONE);
Toast.makeText(getActivity(), "No City found", Toast.LENGTH_SHORT).show();
【讨论】:
以上是关于在搜索城市之前使显示数据文本视图不可见的主要内容,如果未能解决你的问题,请参考以下文章
如何使 wrap_content 文本视图包装其内容仅足以使其他视图在 LinearLayout android 中可见?