2010-02-26 4 views
7

पर एक सूचीदृश्य के नीचे एक बटन जोड़ना तो मैं एंड्रॉइड में एक सूचीदृश्य के नीचे एक बटन जोड़ने की कोशिश कर रहा हूं, समस्या यह है कि बटन प्रकट नहीं होता है।एंड्रॉइड

<?xml version="1.0" encoding="utf-8"?> 
<AbsoluteLayout 
    android:id="@+id/widget0" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    xmlns:android="http://schemas.android.com/apk/res/android"> 

    <ListView 
     android:id="@+id/messagelist" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_x="0px" 
     android:layout_y="0px"> 
    </ListView> 
    <Button 
     android:id="@+id/addbutton" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Button" 
     android:layout_x="0px" 
     android:layout_y="379px"> 
    </Button> 
</AbsoluteLayout> 
+2

हम अब और AbsoluteLayout उपयोग नहीं करना चाहिए। इसके बजाए LinearLayout या RelativeLayout का उपयोग करें। – anticafe

+0

मैं LinearLayout का उपयोग करता हूं, layout_height = "0" और weight = "1" के साथ सूचीदृश्य। – David

उत्तर

6

AbsoluteLayout को बहिष्कृत किया गया है। मैं बजाय सुझाव है कि आप एक LinearLayout का प्रयोग करेंगे:

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

    <ListView 
     android:id="@+id/messagelist" 
     android:layout_width="wrap_content" 
     android:layout_height="0dp" 
     android:layout_weight="1"> 
    </ListView> 
    <Button 
     android:id="@+id/addbutton" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Button"> 
    </Button> 
</LinearLayout> 

मैं भी एक अच्छा परिचय के लिए लेआउट पर developer docs के माध्यम से पढ़ने का सुझाव चाहते हैं।

+7

ListView ऊंचाई के लिए wrap_content का उपयोग न करें, 0 डीआईपी का उपयोग करें। Wrap_content बहुत महंगा है और यह परिणाम नहीं बदलेगा। –

+0

वूप्स, मैंने अपने उदाहरण में लेआउट_विड्थ और लेआउट_हेइट को उलट दिया था। ठीक कर दिया। –

+0

मैंने बहुत सी चीजों की कोशिश की और आपका समाधान पाया। वास्तव में – Tima

1

"एपीआई डेमो" नमूना में ऐसे लेआउट का एक उदाहरण है। नमूने के लिए निम्न पृष्ठ लिंक: फ़ाइल LinearLayout9.java के लिए

http://developer.android.com/resources/samples/index.html

देखो, और उसके संगत लेआउट फ़ाइल linear_layout9.xml। सुविधा के लिए, मैं उन्हें यहाँ चिपकाया है:

LinearLayout9.java:

/* 
* Copyright (C) 2007 The Android Open Source Project 
* 
* Licensed under the Apache License, Version 2.0 (the "License"); 
* you may not use this file except in compliance with the License. 
* You may obtain a copy of the License at 
* 
*  http://www.apache.org/licenses/LICENSE-2.0 
* 
* Unless required by applicable law or agreed to in writing, software 
* distributed under the License is distributed on an "AS IS" BASIS, 
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
* See the License for the specific language governing permissions and 
* limitations under the License. 
*/ 

package com.example.android.apis.view; 

import com.example.android.apis.R; 

import android.app.Activity; 
import android.os.Bundle; 
import android.widget.ListView; 
import android.widget.ArrayAdapter; 

/** 
* Demonstrates how the layout_weight attribute can shrink an element too big 
* to fit on screen. 
*/ 
public class LinearLayout9 extends Activity { 

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.linear_layout_9); 
     ListView list = (ListView) findViewById(R.id.list); 
     list.setAdapter(new ArrayAdapter<String>(this, 
       android.R.layout.simple_list_item_1, AutoComplete1.COUNTRIES)); 
    } 

} 

linear_layout9.xml:

<?xml version="1.0" encoding="utf-8"?> 
<!-- Copyright (C) 2007 The Android Open Source Project 

    Licensed under the Apache License, Version 2.0 (the "License"); 
    you may not use this file except in compliance with the License. 
    You may obtain a copy of the License at 

      http://www.apache.org/licenses/LICENSE-2.0 

    Unless required by applicable law or agreed to in writing, software 
    distributed under the License is distributed on an "AS IS" BASIS, 
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
    See the License for the specific language governing permissions and 
    limitations under the License. 
--> 

<!-- 
    Demonstrates a simple linear layout. The layout fills the screen, with the 
    children stacked from the top. 
    --> 

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

    <ListView android:id="@+id/list" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_weight="1.0" /> 

    <Button 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:text="@string/linear_layout_9_button" /> 

</LinearLayout>