私のアプリの他のすべては機能しますが、追加すると
public void onClickRandomColor(View v) {
Random rRed = null;
Random rGreen = null;
Random rBlue = null;
int min = 0, max = 255;
int randomRed = rRed.nextInt(max - min + 1) + min;
int randomGreen = rGreen.nextInt(max - min + 1) + min;
int randomBlue = rBlue.nextInt(max - min + 1) + min;
Rset = randomRed;
Gset = randomGreen;
Bset = randomBlue;
}
MainActivity.javaに、ONCLICK行をactivity_main.xmlに
<Button
android:id="@+id/btnRandom"
android:layout_below="@+id/btnChoose"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:onClick="onClickRandomColor"
android:text="@string/random"/>
彼女は私を強制的に閉じます。他にもたくさんのコントロールがあり、スライダーはRset、Gset、Bsetをうまく使用します。それはランダムな整数を取得する私の方法と何かでなければなりません。