我有以下问题无法解决:
我正在构建一个包含多个片段的android应用程序。在第二个片段上有一个按钮,每次按下该按钮时,需要更改其背景(即可绘制)。在我添加更多逻辑之前,我希望这能起作用,但我无法让它起作用。非常感谢您的帮助!
round\u按钮\u f2\u减少。xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list
xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="oval">
<solid android:color="@color/colorButtonF1Decrease" />
</shape>
</item>
<item
android:drawable="@drawable/ic_trending_down_white_24px"
android:gravity="center" />
</layer-list>
round\u按钮\u f2\u增加。xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="oval">
<solid android:color="@color/colorButtonF1Increase" />
</shape>
</item>
<item
android:drawable="@drawable/ic_trending_up_white_24px"
android:gravity="center" />
</layer-list>
碎片2。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"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/f2_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="Placeholder"
android:textAlignment="center"
android:textSize="40sp"
android:textStyle="bold"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/f2_button"
android:layout_width="56dp"
android:layout_height="56dp"
android:layout_marginBottom="24dp"
android:layout_marginEnd="24dp"
android:elevation="2dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
</android.support.constraint.ConstraintLayout>
碎片二。JAVA
import android.graphics.drawable.Drawable;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.Toast;
public class FragmentTwo extends Fragment {
private static final String TAG = "FragmentTwo";
private Button mbtnSort;
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_two, container, false);
mbtnSort = view.findViewById(R.id.f2_button);
mbtnSort.setBackground(getResources().getDrawable(R.drawable.round_button_f2_decrease));
mbtnSort.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Drawable btnBackground = mbtnSort.getBackground();
if (btnBackground.equals(getResources().getDrawable(R.drawable.round_button_f2_decrease))) {
Toast.makeText(getActivity(), "IF", Toast.LENGTH_LONG).show();
mbtnSort.setBackground(getResources().getDrawable(R.drawable.round_button_f2_increase));
} else {
Toast.makeText(getActivity(), "ELSE", Toast.LENGTH_LONG).show();
mbtnSort.setBackground(getResources().getDrawable(R.drawable.round_button_f2_decrease));
}
}
});
return view;
}
}