Я установил следующее для видимого в моем методе 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