gpt4 book ai didi

java - Android setVisibility(View.Visible)不适用于布局

转载 作者:数据小太阳 更新时间:2023-10-29 03:01:04 28 4
gpt4 key购买 nike

我有一个布局,我正试图使其可见,但它目前无法正常工作。我想要显示的布局在下面具有 ID“goal_reminder”。可见性在 xml 中设置为“GONE”。

这是xml

<?xml version="1.0" encoding="utf-8"?>
<com.View.pages.ActivityPage
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/activity_refresh"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v7.widget.RecyclerView
android:id="@+id/activitylist"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#e7e6ee"
android:clipToPadding="false"
android:divider="@null"
android:paddingBottom="80dp" />

</android.support.v4.widget.SwipeRefreshLayout>

<RelativeLayout
android:id="@+id/goal_reminder"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/transparent_color"
android:orientation="vertical"
android:visibility="gone">

<ImageView
android:layout_width="match_parent"
android:layout_height="145dp"
android:src="@drawable/sunsetforgoal" />

<ImageView
android:layout_width="200dp"
android:layout_height="50dp"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_below="@+id/goal_reminder_title"
android:layout_marginEnd="5dp"
android:layout_marginRight="5dp"
android:layout_marginTop="35dp"
android:src="@drawable/logo" />

<TextView
android:id="@+id/goal_reminder_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="10dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp"
android:text="No goal in progress"
android:textColor="@color/text_color"
android:textSize="26sp" />

<TextView
android:id="@+id/goal_reminder_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_below="@+id/goal_reminder_title"
android:layout_marginLeft="20dp"
android:layout_marginStart="20dp"
android:layout_marginTop="20dp"
android:text="Create a new goal in your \nprofile."
android:textColor="@color/text_color"
android:textSize="18sp" />

</RelativeLayout>

<TextView
android:id="@+id/playground_welcome"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:autoLink="all"
android:gravity="center_horizontal"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:text="@string/welcome_string"
android:textSize="18sp"
android:visibility="gone" />

</com.View.pages.ActivityPage>

这里是 onFinishInflate(我正在使用 Screenplay/Flow 库,所以它会取代 onCreate)。如您所见,我正在尝试设置 goalReminderLayout.setVisibility(View.Visible) 但它实际上并没有使其可见。我已经在 if 语句之外测试了同一行代码,它工作得很好。我还进行了测试以确保它到达 if 语句中的那一行代码并且该部分工作正常,lastTriggerDate 被正确保存在 Parse 中。我不明白为什么它在 onFinishInflate 中的 if 语句之外工作正常。我还测试了 Log.d("TestVisiblity", goalReminderLayout.getVisibility());它返回一个 0(可见),所以它看起来像是可见的,但实际上并没有显示在我的屏幕上。

  Date lastTriggerDate = new Date();
Boolean noDateInParse = false;

if (currentUser.getLastTriggerDate() != null) {
lastTriggerDate = currentUser.getLastTriggerDate();
} else {
noDateInParse = true;
}

Boolean inToday = DateUtils.isToday(lastTriggerDate.getTime());

if (!inToday) {
currentUser.setLastTriggerDate(currentTime);
currentUser.saveInBackground(new SaveCallback() {
@Override
public void done(ParseException e) {
if (e == null) {
goalReminderLayout.setVisibility(View.VISIBLE);
fireGoalReminderAlert();
} else {
e.printStackTrace();
}
}
});
} else if (noDateInParse) {
currentUser.setLastTriggerDate(currentTime);
currentUser.saveInBackground(new SaveCallback() {
@Override
public void done(ParseException e) {
if (e == null) {
goalReminderLayout.setVisibility(View.VISIBLE);

fireGoalReminderAlert();
} else {
e.printStackTrace();
}
}
});
}

这是 fireGoalReminderAlert() 的代码;它只是设置为在 10 秒后将可见性设置回消失。我在测试时注释掉了这一行,但仍然没有成功,所以我认为这不是导致问题的原因。

public void fireGoalReminderAlert() {
Runnable mRunnable;
Handler mHandler = new Handler();

mRunnable = new Runnable() {

@Override
public void run() {
goalReminderLayout.setVisibility(View.GONE);
}
};
mHandler.postDelayed(mRunnable, 10 * 1000);
}

最佳答案

当您将布局设置为从消失变为可见时,最好使 View 无效以允许在布局上重绘。

goalReminderLayout.setVisibility(View.VISIBLE);
goalReminderLayout.invalidate();

查看 android 文档以获取更多信息

http://developer.android.com/reference/android/view/View.html

关于java - Android setVisibility(View.Visible)不适用于布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37169847/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com