Как динамически изменять содержимое внутри Android Modal Bottomsheet - PullRequest
0 голосов
/ 16 мая 2018

У меня есть XML-файл Bottomsheet, содержащий два элемента: Follow и Скопировать ссылку .. когда я нажимаю Follow , его следует изменить на Отписаться динамически. Я попытался использовать setText , не сработало.

Пожалуйста, объясните мне, как изменить текст диалогов нижней таблицы.

Вот мой xml-файл Bottomsheet

<LinearLayout app:layout_behavior="android.support.design.widget.BottomSheetBehavior"
android:layout_width="match_parent"
android:layout_height="180dp"
android:orientation="vertical"
android:background="#ffffff"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<LinearLayout
    android:id="@+id/bottom_sheet_follow"
    android:layout_width="match_parent"
    android:layout_height="60dp"
    android:clickable="true"
    android:focusable="true"
    android:orientation="horizontal"
    android:foreground="?android:attr/selectableItemBackground"
    android:padding="16dp">
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        app:srcCompat="@drawable/ic_mode_follow_grey_24dp"
        />
    <TextView
        android:id="@+id/followTView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginLeft="16dp"
        android:text="Follow"/>
</LinearLayout>
<LinearLayout
    android:id="@+id/bottom_sheet_copy"
    android:layout_width="match_parent"
    android:layout_height="60dp"
    android:clickable="true"
    android:focusable="true"
    android:orientation="horizontal"
    android:foreground="?android:attr/selectableItemBackground"
    android:padding="16dp">
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        app:srcCompat="@drawable/ic_copy_grey_24dp"
        />
    <TextView
        android:id="@+id/copyLink"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginLeft="16dp"
        android:text="Copy link"/>
</LinearLayout>

Bottomsheet Java код

    View bottomSheetView = View.inflate(mContext, R.layout.bottom_sheet_dialog_for_sharedposts, null);

            mDialog = new BottomSheetDialog(mContext);
            mDialog.setContentView(bottomSheetView);
            mDialog.show();

followBtnLayout = bottomSheetView.findViewById(R.id.bottom_sheet_follow);
followTView = bottomSheetView.findViewById(R.id.followTView);

followBtnLayout .setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
    followTView.setText("Unfollow");
}
});

Но текстовое представление Follow (я имею в виду followTView) не меняется на Unfollow . Пожалуйста, скажите мне, где я ошибся ...

Заранее спасибо ...

Ответы [ 2 ]

0 голосов
/ 16 мая 2018

Просто предположение.Вы пытались изменить код?возможно, прослушиватель кликов должен сначала загрузиться перед вызовом "mDialog.show ()".

 View bottomSheetView = View.inflate(mContext, R.layout.bottom_sheet_dialog_for_sharedposts, null);

        followBtnLayout = bottomSheetView.findViewById(R.id.bottom_sheet_follow);
        followTView = bottomSheetView.findViewById(R.id.followTView);

        followBtnLayout.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                followTView.setText("Unfollow");
            }
        });

        mDialog = new BottomSheetDialog(mContext);
        mDialog.setContentView(bottomSheetView);
        mDialog.show();
0 голосов
/ 16 мая 2018

Вы можете сделать это с логическим значением, я сделал это с моим изображением. Могу вам помочь

 //Initialize boolean as true by default
   public boolean showingFirst = true;

  holder.ivFavorite.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                if (showingFirst){
                    Toast.makeText(mActivity, "Item added to favorite", Toast.LENGTH_SHORT).show();
                    holder.ivFavorite.setImageResource(R.drawable.filled_heart);
                    showingFirst = false;
                }else {
                    holder.ivFavorite.setImageResource(R.drawable.ic_favorite);
                    Toast.makeText(mActivity, "Item removed from favorite", Toast.LENGTH_SHORT).show();
                    showingFirst = true;
                }

            }
        });
...