我有一个textview,如果满足特定条件,它应该可见。 其他视图在满足条件时正常运行,但文本视图无法显示。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFF">
<RelativeLayout
android:id="@+id/nav_header_container"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentTop="true"
android:background="#000">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hi "
android:textStyle="bold"
android:layout_centerVertical="true"
android:textColor="#FFF"
android:paddingLeft="5dp"
android:id="@+id/hi"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FFF"
android:id="@+id/name"
android:textStyle="bold"
android:layout_centerVertical="true"
android:text="!"
android:layout_toRightOf="@+id/hi"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:textStyle="italic"
android:textColor="#FFF"
android:id="@+id/edit"
android:paddingRight="5dp"
android:layout_alignParentRight="true"/>
</RelativeLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/drawerList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/nav_header_container"
android:layout_marginTop="15dp"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/hello"
android:text="Hello"
android:textColor="#000"
android:layout_below="@+id/drawerList"
android:layout_marginTop="15dp"
android:paddingLeft="5dp"
android:textStyle="italic"/>
</RelativeLayout>
id = hello的文本视图未显示。
这是我正在使用的代码 -
if(fname!="!")
{
edit.setText("EDIT");
hello.setVisibility(View.VISIBLE);
}
else
{
edit.setText("What's going on?");
hello.setVisibility(View.GONE);
}
答案 0 :(得分:1)
更改RecyclerView
和TextView
属性 - 将RecyclerView
设为layout_above
的{{1}},而不是TextView
TextView
。
还必须将RecyclerView
添加到layout_alignParentBottom="true"
。
TextView
答案 1 :(得分:0)
对于声明中的TextView添加:
android:visibility="invisible"
你的代码应该是:
if(fname!="!")
{
edit.setText("EDIT");
hello.setVisibility(View.VISIBLE);
}
else
{
edit.setText("What's going on?");
hello.setVisibility(View.INVISIBLE);
}
希望这能解决你的问题。
答案 2 :(得分:0)
我将你的xml加载到android studio并且看起来没问题,只是带有id“hello”的textview似乎被recyclerview在布局中向下推。尝试按如下所示加载它,看看它是否有帮助:
df_rank.set_index(df_returns.index)
还有一件事是关于你的情况,试着存储你的“!”在s变量中然后进行比较。您也可以使用Log语句验证您的条件是否得到满足。