私のonCreateメソッドで次を表示するように設定しました。TextViewをVISIBLEに設定できません
findViewById(R.id.noDesignsCallToAction).setVisibility(View.VISIBLE);
XMLでは、ビューは表示されなくなりました。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="1"
android:orientation="vertical"
android:layout_below="@id/toolbar"
android:id="@+id/linearLayout">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/go_ahead_create_something_n_it_s_really_easy_n_just_click_here_to_get_started"
android:textAppearance="?android:attr/textAppearanceLarge"
android:id="@+id/noDesignsCallToAction"
android:padding="10dp"
android:textSize="14sp"
android:typeface="sans"
android:visibility="gone"
android:onClick="LaunchCustomizer"
android:gravity="center_vertical|center_horizontal" />
</LinearLayout>
なぜ私のアプリで見えるように見えるのですか?
レイアウトXML全体を投稿できますか? –
これを膨張させて可視性を設定すると機能しますか? * TextViewのようにtv =(TextView)findView ...; tv.setVisibility(View.VISIBLE); *多分あなたの文字列resは空ですか? –
実際に何をしたいですか? – PriyankaChauhan