テキストビューが右側にある場合、その近くでスピナーとテキストビューを使用していますが、それらを切り替えると、Javaクラスの下の行でアプリがクラッシュします
spinner= (Spinner) findViewById(R.id.spinner)
私のxmlコードは
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="5dp"
android:orientation="horizontal"
android:weightSum="100" >
<TextView
android:id="@+id/tv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:layout_weight="70"
android:text="0"
android:textSize="30sp" />
<Spinner
android:id="@+id/spinner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:layout_marginTop="5dp"
android:layout_weight="30" />
</LinearLayout>
スピナーを最初に配置すると、正常に動作するようになりました