2016-05-11 13 views
0

私はレイアウトを表示しようとしていて、現在は動作していません。私が見えるようにしたいレイアウトには、以下のid "goal_reminder"があります。可視性はXMLで "GONE"に設定されています。ここでレイアウトでAndroid setVisibility(View.Visible)が機能しない

ここでは、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> 

(つまりのonCreateの行われているので、私は脚本/フローライブラリを使用しています)onFinishInflateです。ご覧のとおり、私は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秒後に視界を戻すように設定するだけです。私はテスト時にこのラインをコメントし、まだ運がなかったので、これが問題を引き起こしているとは思わない。

+0

用アンドロイドのドキュメントを

見て? –

答えて

1

レイアウトを表示するように設定すると、レイアウトを再描画できるように表示を無効にすることをお勧めします。

goalReminderLayout.setVisibility(View.VISIBLE);
goalReminderLayout.invalidate(); `fireGoalReminderAlert()`で書かれているものより多くの情報

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

関連する問題