2011-12-14 12 views
0

連絡先リストアンドロイドアプリケーションを実行していますが、画面に小さな問題があります。ここ は私search.xmlコードです:ここで画面レイアウトは部分ダイアログの代わりに全画面表示する必要があります

<?xml version="1.0" encoding="utf-8" ?> 
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:orientation="vertical" 
android:layout_width="fill_parent"  
android:layout_height="fill_parent"> 
<LinearLayout 
android:orientation="horizontal" 
android:layout_width="fill_parent" 
    android:layout_height="wrap_content"> 
<EditText android:id="@+id/searchText" 
android:hint="@string/searchDefault" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
    android:layout_weight="1" /> 
<Button android:id="@+id/searchButton" 
android:text="Search" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" /> 
</LinearLayout> 
    <ListView 
android:id="@android:id/list" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" /> 

    </LinearLayout> 
enter code here 

は私detalii.xmlです:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:orientation="vertical" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent"> 

    <TextView 
      android:id="@+id/name" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content"/> 
    <ListView 
      android:id="@android:id/list" 
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent"/> 


    </LinearLayout> 

私の問題は、私の画面は下からの画像のように表示されていることですが、私は、画面全体に表示するdetaliiたいです私は何が間違っているのか分かりません。誰か私に解決策を教えてもらえますか?

enter image description here

これは私のsearch.javaです:ここでは

package org.example.dbcontactconsole; 




    import android.app.ListActivity; 
    import android.content.Intent; 
    import android.database.Cursor; 
    import android.database.sqlite.SQLiteDatabase; 
    import android.os.Bundle; 
    import android.view.View; 
    import android.view.View.OnClickListener; 
    import android.widget.Button; 
    import android.widget.EditText; 

    import android.widget.ListView; 
    import android.widget.SimpleCursorAdapter; 
    import static android.provider.BaseColumns._ID; 
    public class Search extends ListActivity { 

private static int[] TO = {R.id.rowid,R.id.name, R.id.mobilephone, R.id.email }; 
private static String[] FROM = {_ID,DbConstants.NAME, DbConstants.PHONE, DbConstants.EMAIL, }; 
private Button sButton; 

private ListView lv1; 
private static SQLiteDatabase db; 
    private DbCreate contacts; 
    private Cursor cursor; 
    private EditText searchText; 
    protected SimpleCursorAdapter adapter; 


protected void onCreate(Bundle savedInstanceState){ 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.search); 
    searchText=(EditText)findViewById(R.id.searchText); 
    sButton=(Button)findViewById(R.id.searchButton); 
    sButton.setOnClickListener(new OnClickListener() { 

     public void onClick(View v) { 
      // TODO Auto-generated method stub 
      showDatabaseContent(); 
       lv1 = getListView(); 

       lv1.setTextFilterEnabled(true); 
     } 
    }); 





    } 


    private Cursor getContacts() { 
     db = contacts.getReadableDatabase(); 
     cursor = db.rawQuery("SELECT _id,name, phone, email FROM contactTest1 WHERE name LIKE ?", 
       new String[]{searchText.getText().toString()+"%"}); 
     startManagingCursor(cursor); 
     return cursor; 
     } 

    public void showDatabaseContent(){ 
    contacts = new DbCreate(this); 
    try { 
     cursor = getContacts(); 
     showContacts(cursor); 
    } finally { 
     contacts.close(); 
     db.close(); 
    } 
    } 

    private void showContacts(Cursor cursor) { 
    //set up data binding 
    adapter = new SimpleCursorAdapter(this, R.layout.item, cursor, FROM, TO); 
    setListAdapter(adapter); 
    } 

    public void onListItemClick(ListView parent, View v, int position, long id) { 
    Intent abaintent = new Intent(this,Detalii.class); 
    Cursor cursor = (Cursor) adapter.getItem(position); 
    abaintent.putExtra("Contact_ID", cursor.getInt(cursor.getColumnIndex("_id"))); 
    startActivity(abaintent); 
    } 






    } 

は私Detalii.javaです:

package org.example.dbcontactconsole; 


     import java.util.ArrayList; 
     import java.util.List; 

    import android.app.ListActivity; 
    import android.content.Intent; 
     import android.database.Cursor; 
     import android.database.sqlite.SQLiteDatabase; 
     import android.net.Uri; 
     import android.os.Bundle; 
     import android.view.LayoutInflater; 
     import android.view.View; 
     import android.view.ViewGroup; 
     import android.widget.ArrayAdapter; 
     import android.widget.ListView; 
     import android.widget.TextView; 

       public class Detalii extends ListActivity 
     { 
     protected TextView contactName; 
     protected TextView contactPhone; 
     protected TextView email; 
     protected int contactId; 
     protected List<Actiune> actiune; 
     protected ActiuneAdapter adapter; 
     @Override 
     public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.detalii); 

    contactId = getIntent().getIntExtra("Contact_ID",0); 
    SQLiteDatabase db = (new DbCreate(this)).getWritableDatabase(); 
    Cursor cursor = db.rawQuery("SELECT name,phone,email FROM contactTest1 WHERE _id=?",new String[]{""+contactId}); 

     if (cursor.getCount() == 1) 
     { 
    cursor.moveToFirst(); 

    contactName = (TextView) findViewById(R.id.name); 
    contactName.setText(cursor.getString(cursor.getColumnIndex("name"))); 

    actiune= new ArrayList<Actiune>(); 
    String phoneString=cursor.getString(cursor.getColumnIndex("phone")); 
    if (phoneString!=null) 
    { 
    actiune.add(new Actiune("Suna la numar",phoneString,Actiune.ACTION_CALL)); 
    } 
    String stringemail = cursor.getString(cursor.getColumnIndex("email")); 
    if (stringemail != null) { 
      actiune.add(new Actiune("Email", stringemail,Actiune.ACTION_EMAIL)); 
      } 
    adapter = new ActiuneAdapter(); 
    setListAdapter(adapter); 
    } 
    } 
     public void onListItemClick(ListView parent, View view, int position, long id) { 

     Actiune action = actiune.get(position); 

     Intent intent; 
    switch (action.getType()) { 

    case Actiune.ACTION_CALL: 
      Uri callUri = Uri.parse("tel:" + action.getData()); 
      intent = new Intent(Intent.ACTION_CALL, callUri); 
     startActivity(intent); 
      break; 

    case Actiune.ACTION_EMAIL: 
    intent = new Intent(Intent.ACTION_SEND); 
    intent.setType("plain/text"); 
    intent.putExtra(Intent.EXTRA_EMAIL, new String[]{action.getData()}); 
    startActivity(intent); 
    break; 


     } 
    }  

    class ActiuneAdapter extends ArrayAdapter<Actiune> { 

    ActiuneAdapter() { 
      super(Detalii.this, R.layout.actiune_detalii, actiune); 
    } 

    @Override 
    public View getView(int position, View convertView, ViewGroup parent) { 
    Actiune action = actiune.get(position); 
    LayoutInflater inflater = getLayoutInflater(); 
    View view = inflater.inflate(R.layout.actiune_detalii, parent, false); 
    TextView label = (TextView) view.findViewById(R.id.label); 
    label.setText(action.getLabel()); 
    TextView data = (TextView) view.findViewById(R.id.data); 
    data.setText(action.getData()); 
    return view; 
    } 

    } 

    } 
+0

...

<activity android:name=".Detalii"> 

これはあなたのマニフェストを投稿していなかったので、ただの推測です:これまで

<activity android:name=".Detalii" android:theme="@android:style/Theme.Dialog"> 

:その場合は、このからそれを変更してみてください多くの情報。ここには関係ないものは一切含まれていない小さな例を作ってください:http://sscce.org/ – Nanne

答えて

1

あなたDetalii活動は、ダイアログスタイルセットを持っているように見えます。これはあまりにもある

+0

ありがとうございます。 – jonny

+0

これが答えであれば、それを回答としてマークして、他人に知らせてください。 – Joe

関連する問題