【发布时间】:2018-06-24 20:36:05
【问题描述】:
我正在尝试制作我的 iOS 应用程序的 Android 版本,但我的列表视图和列表视图中的图像周围出现了这个奇怪的白色边框,这非常令人沮丧。截图如下:
这是我的文件代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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.leoconnelly.connexus.HealthCenterListActivity">
android:background="#D53D96"
<ListView
android:id="@+id/hospitals_list_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="8dp"
android:background="#D53D96"
/>
</RelativeLayout>
【问题讨论】:
-
移除 android:layout_margin="8dp"
标签: android android-studio user-interface