私はAndroidの非常に始まりです。これは私の最初のプロジェクトです。私はリストビューを使ってEditText
とTextView
を並べて表示しています。それは、以下のすべてのEditText
instead.Theに表示されているButton
ビューを使用していた場合今私はend.Butで送信ボタンをしたい私のXMLファイルです:ボタンの位置合わせ
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/txtview"
android:text="subject"
android:layout_width="wrap_content"
android:layout_alignParentLeft="true"
android:paddingLeft="10dp"
android:textSize="25dp"
android:textColor="@color/black"
android:layout_height="wrap_content"
android:layout_weight="0.7"
android:paddingRight="20dp"
android:textStyle="bold"
/>
<EditText
android:cursorVisible="true"
android:id="@+id/ScanText"
android:hint="Internal+External"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.3"
android:layout_toRightOf="@id/textView"
android:inputType="number"
android:layout_marginTop="20dp"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Submit"
android:layout_alignParentEnd="true"
android:id="@+id/submitbutton"/>
</RelativeLayout>
これはListView
用途にadapter
レイアウトです。私はbottom.Iで単一のボタンは、私が一番下
TextView
s.Soがあるのでボタンも何回も表示されています
私はバット私main activity
ListView
以下で、それは以下のwork.The did'nt .Butにすることは、私のXMLです:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="match_parent"
>
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@android:id/list"></ListView>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Submit"
android:id="@+id/submitbutton"/>
</LinearLayout>
は、あなたの期待される出力を示して! –
このレイアウトからボタンを削除すると、このレイアウトはリスト項目用です。 listViewが含まれているレイアウトにボタンを追加します。 –
ボタンをあなたの活動レイアウトに入れてください。 - 毎回ボタンを作成したくない場合は – rafsanahmad007