我正在嘗試創建一個活動,RateCardActivity
,它有一個微調器。我的佈局文件RateCardActivity
是rate_card
。我的RateCardActivity
如下所示。微調器活動不起作用
public class RateCardActivity {
public void onCreate(Bundle bundle) {
super.onCreate(bundle);
setContentView(R.layout.rate_card);
Spinner spinner = (Spinner) findViewById(R.id.select_city);
ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this,
R.array.select_city, android.R.layout.simple_spinner_item);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinner.setAdapter(adapter);
}
}
佈局文件rate_card
是:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res/com.olacabs.customer"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:color/darker_gray"
android:gravity="center"
android:paddingBottom="4dp"
android:paddingTop="4dp"
android:text="@string/rate_card"
android:textColor="@color/white"
android:textSize="20dp"
custom:customFont="litera_bold.ttf" />
<Spinner
android:id="@+id/select_city"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
的RateCardActivity
從使用目的(我敢肯定,另一項活動叫有什麼不對的代碼,當我替補RateCardActivity
的一部分與另一項活動,應用程序工作正常)。當我嘗試在模擬器中的應用程序中打開RateCardActivity
時,應用程序崩潰,我收到消息「應用程序意外停止,請稍後再試。」
我似乎無法理解我做錯了什麼,並想知道如何解決這個問題?
你聲明的RateCardActivity你清單文件? ,你可以發佈logcat –
你錯過了一些事情,首先你擴展活動並檢查XML,我給你一個工作示例代碼.. – Satyam
@Sharath,我沒有聲明清單中的活動。這很粗心。不管怎麼說,還是要謝謝你。 – Ankush