我当时在android studio上进行应用程序布局,在那里我看到了正确的设计,但是当我在设备上进行尝试时,我发现RadioGroup与Button重叠。 我是制作Android应用程序的新手,所以我已经尝试了好几天了,但仍未找到答案。有人可以帮我吗?
@using Newtonsoft.Json.Linq //add this to your Razor page or to _ViewImports.cshtml
<td>@(JObject.Parse(bankDepositHistoryItem)["samanTraceNo"])</td>
答案 0 :(得分:0)
尝试从圆圈图像视图中删除android:layout_centerVertical="true"
,并将android:layout_marginTop
的值更改为更大的值。
<de.hdodenhof.circleimageview.CircleImageView xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/imgProfil"
android:layout_width="96dp"
android:layout_height="96dp"
android:layout_below="@id/HeaderWaktuMati"
<- remove centerVertical
android:layout_marginStart="5dp"
android:layout_marginLeft="5dp"
android:layout_marginTop="65dp" <- change this value, 65dp may be too much, adjust accordingly
android:layout_marginEnd="-105dp"
android:layout_marginRight="-105dp"
android:layout_marginBottom="5dp"
android:layout_toStartOf="@+id/RGroupWaktu"
android:layout_toLeftOf="@+id/RGroupWaktu"
android:onClick="onUploadImageClick"
android:src="@drawable/iconrounded"
app:civ_border_color="#ffffff"
app:civ_border_width="2dp" />
答案 1 :(得分:0)
我已经更新了我的问题,对不起,我想与按钮重叠,但我可以解决它。我非常感谢所有人