Поиск элементов управления внутри ViewStub Android - PullRequest
0 голосов
/ 11 сентября 2018

У меня есть фрагмент, и я хочу использовать ViewStub для некоторых данных.

Проблема, с которой я столкнулся, состоит в том, что, как только я накачал ViewStub из Java-класса фрагментов, как я могу ссылаться в Java-классе фрагментовкомпоненты внутри ViewStub?

Например, в настоящее время я использую, когда компонент находится в раздутом виде фрагмента;

TextView txtAwayPenStat = (TextView) myResInfoView.findViewById(R.id.txtAwayPenStat);

Это не будет работать, если txtAwayPenStat перемещен в ViewStub.

Я попробовал несколько подходов;

        ViewStub viewStub = (ViewStub) getActivity().findViewById(R.id.info_detail_stub);
        View inflatedView = viewStub.inflate();

Где getActivity (), я также попытался getView ().

1 Ответ

0 голосов
/ 11 сентября 2018

Вы можете сделать так:

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ViewStub stub = (ViewStub) findViewById(R.id.stub);
        View inflated = stub.inflate();
        TextView txtAwayPenStat = (TextView) inflated.findViewById(R.id.txtAwayPenStat);
        txtAwayPenStat.setText("gdgad");
    }

Activity_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    >

    <ViewStub
        android:id="@+id/stub" 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout="@layout/mysubtree" 
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        />

</android.support.constraint.ConstraintLayout>

mysubtree.xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    >

    <TextView
        android:id="@+id/txtAwayPenStat"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="HELLO WORLD"
        ></TextView>

</android.support.constraint.ConstraintLayout>

Атрибут android:layout в теге ViewStub является ссылкой на представление, которое будет раздуто рядом с вызовом inflate ().

...