ListViewは私のアプリケーションでは表示されません。 以下のようにレイアウトファイルにListViewが追加されましたが、エミュレータはイメージとして表示されます。ListViewが表示されません
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.yds.Pages.CokCikanListActivity"
>
<CheckBox
android:id="@+id/checkboxYapildimi"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:color="#3bbdfa"
android:focusable="false"
android:focusableInTouchMode="false" />
<ListView
android:id="@+id/listViewCCList"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:divider="#ffffff"
android:dividerHeight="1dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_weight="0.44" />
回答を得るには、あなたの質問を編集して、何を求めているかを明確にする必要があります。 –
@ sinan yilmazありがとう。プラス1。 – statosdotcom