私は listview1 が私のパッケージで定義されたいくつかのアクティビティを開くようにしたいと思います。それらのアクティビティで、新しい listview2 アクティビティを再定義しました。
私は同じようにコーディングしようとしました。問題を理解するためにコードを見てください。
public class ABC extends ListActivity{
String classNames[] = {"A","B","C"};
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setListAdapter(new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1,classNames));
}
protected void onListItemClick(ListView lv, View v, int position, long id){
super.onListItemClick(lv, v, position, id);
String openClass = classNames[position];
try{
Class selected = Class.forName("com.lab.example."+openClass);
Intent selectedIntent = new Intent(this, selected);
startActivity(selectedIntent);
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
}
上記のソース コードでは、a、b、c クラスがリストビューに表示されます。しかし、Aをクリックしても何も起こりません。
私は知りたいです
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setListAdapter(new ArrayAdapter<String> (this,android.R.layout.simple_list_item_1,classNames));
}
上記のカスタム レイアウトを追加するにはどうすればよいですか
クラスAの場合:-
public class A extends ListActivity{
String classNames[] = {"x1","x2","x3"};
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setListAdapter(new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1, classNames));
}
protected void onListItemClick(ListView lv, View v, int position, long id){
super.onListItemClick(lv, v, position, id);
String openClass = classNames[position];
try{
Class selected = Class.forName("com.lab.example."+openClass);
Intent selectedIntent = new Intent(this, selected);
startActivity(selectedIntent);
}
catch(ClassNotFoundException e){
e.printStackTrace();
}
}
on the above source code x1,x2,x3 class activites are working for A only
X1:-
public class X1 extends Activity {
// List view
private ListView lv;
// Listview Adapter
ArrayAdapter<String> adapter;
// Search EditText
EditText inputSearch;
// ArrayList for Listview
ArrayList<HashMap<String, String>> productList;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// Listview Data
String products[] = getResources().getStringArray(R.array.X1);
lv = (ListView) findViewById(R.id.list_view11);
inputSearch = (EditText) findViewById(R.id.inputSearch11);
// Adding items to listview
adapter = new ArrayAdapter<String>(this, R.layout.list, R.id.route, products);
lv.setAdapter(adapter);
inputSearch.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence cs, int arg1, int arg2, int arg3) {
// When user changed the Text
X1.this.adapter.getFilter().filter(cs);
}
@Override
public void beforeTextChanged(CharSequence arg0, int arg1, int arg2,
int arg3) {
// TODO Auto-generated method stub
}
@Override
public void afterTextChanged(Editable arg0) {
// TODO Auto-generated method stub
}
});
}
}
マニフェスト:-
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.lab.example"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.lab.example.MainActivitypage"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Menu"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.lab.example.Menu" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="com.lab.example.ABC" />
<activity android:name="com.lab.example.A" />
<activity android:name="com.lab.example.B" />
<activity android:name="com.lab.example.C" />
<activity android:name="com.lab.example.X1" />
<activity android:name="com.lab.example.X2" />
<activity android:name="com.lab.example.X3" />
ログ cat に表示されるエラー:-
ログはこのエラーでいっぱいです。私はAndroidが初めてなので、これを理解することはできません:-
03-14 23:16:55.970: E/PGA(3459): PgaSocketWriteAllHdipc: hd_ipc_send() failed
03-14 22:32:23.810: E/InputDispatcher(1304): channel 'b466cb20 com.lab.example/com.lab.example.ABC (server)' ~ Channel is unrecoverably broken and will be disposed!
03-14 22:34:45.480: E/ALSALib(1293): external/alsa-lib/src/confmisc.c:136: (snd_config_get_bool) Invalid type for nonblock
A->X1 をクリックしたときにアクティビティを開始したい。私が明確でない場合は、以下のコメントで言及してください。どんな提案でも大歓迎です。