我想動態添加微調器到RelativeLayout,但我遇到了問題。 這是我的代碼。動態添加微調器到RelativeLayout
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/Relativ"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
</RelativeLayout>
而且在我的課:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
RelativeLayout rl = (RelativeLayout) findViewById(R.id.Relativ);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,1);
adapter.add("1");
adapter.add("2");
adapter.add("3");
adapter.add("4");
adapter.add("5");
Spinner list = new Spinner(this);
list.setAdapter(adapter);
rl.addView(list);
}
但開不運行。我想知道我的代碼中有什麼問題,以及如何修復它。 我已經在RelativeLayout.addView中使用RelativeLayout參數進行了嘗試,並且它不運行。 謝謝。
你說的 「不運行」 是什麼意思?不編譯?崩潰? – 2014-10-07 22:12:15
應用程序崩潰 – guillocrack 2014-10-07 22:21:39
然後,您應該在此處發佈logcat轉儲,但只能在您自己閱讀之後。 – 2014-10-07 22:22:40