0

私はアンドロイドが初めてです

閉じるマークを設定するためのレイアウトのインフレートで問題に直面しています

インフレータにクローズマークを設定する方法は? これを実装する方法は?

誰でも私を助けてください。

私はこのようにしよう..

  LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
  viewList = Nexttopic.this.getLayoutInflater().inflate(R.layout.activity_nexttopic, null);
  dialogMarketList = new Dialog(Nexttopic.this);
  dialogMarketList.requestWindowFeature(Window.FEATURE_NO_TITLE);
  dialogMarketList.setTitle("TOPICS");
  dialogMarketList.setContentView(viewList);
  dialogMarketList.show();     
  lvForDialog = (ListView) viewList.findViewById(R.id.List_view);
  lvForDialog.setTranscriptMode(ListView.TRANSCRIPT_MODE_ALWAYS_SCROLL);
  ArrayAdapter<String> adapter = (new ArrayAdapter<String>(Nexttopic.this, R.layout.row_topic, R.id.child_row,tnamelist));
  lvForDialog.setAdapter(adapter);  

アクティビティ-nexttopic.xml

  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:android1="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Nexttopic" >
<ListView
    android1:id="@+id/List_view"
    android1:layout_width="match_parent"
    android1:layout_height="330dp"
    android1:layout_centerHorizontal="true"
    android1:layout_centerVertical="true"
     android:background="@drawable/bg">
</ListView>
</RelativeLayout>

row_topic.xml

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:orientation="horizontal"
           android:layout_width="fill_parent"
           android:layout_height="fill_parent" 
           android:weightSum="1">
 <TextView 
 android:id="@+id/c_txt"
 android:layout_width="fill_parent"
 android:layout_height="50dp"
 android:text="X"
 android:textSize="25dp"
 android:gravity="right"/>
<TextView
android:id="@+id/child_row"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/c_txt"
android:layout_marginTop="27dp"
android:background="@drawable/bg"
android:gravity="center_vertical"
android:minHeight="?android:attr/listPreferredItemHeight"
android:paddingLeft="6dip"
android:textColor="@android:color/white" />
</RelativeLayout>

クロスマークの上のリストの各テキストビューが表示されているようになります....

4

1 に答える 1

0

row_topic.xml ではなく、activity-nexttopic.xml レイアウトに終了マークを配置する必要があります。row_topic.xml に配置したものは、Listview のすべての行で繰り返されます。

于 2013-04-18T11:17:44.973 に答える