第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何解決應用在不同屏幕上的顯示問題?

如何解決應用在不同屏幕上的顯示問題?

慕娘9325324 2023-09-27 14:21:17
為什么我的應用程序顯示因設(shè)備而異這是我在某些設(shè)備中得到的輸出這是某些設(shè)備的輸出,您可以清楚地看到右側(cè)正在切割請幫助我在不同的設(shè)備中從各個方面修復我的應用程序 UI,如圖1所示。我的 XML 代碼<?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"android:background="@drawable/bg_pic"tools:context=".MainActivity"><LinearLayout    android:layout_width="match_parent"    android:layout_height="wrap_content">    <ImageView        android:id="@+id/imageView"        android:layout_width="33dp"        android:layout_height="27dp"        android:layout_marginLeft="15dp"        android:layout_marginTop="10dp"        app:srcCompat="@drawable/close_btn" />        <LinearLayout            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:layout_marginLeft="135dp"            android:layout_marginTop="5dp"            android:gravity="center">            <TextView                android:id="@+id/imageView2"                android:layout_height="wrap_content"                android:layout_width="wrap_content"                android:background="@drawable/timer"                android:gravity="center"                android:text="15s"                android:textSize="20dp"                android:textColor="#3B3B3B"                android:textStyle="bold" />                </LinearLayout>        <TextView            android:id="@+id/textView"            android:layout_width="97dp"            android:layout_height="40dp"            android:layout_marginLeft="80dp"            android:layout_marginTop="10dp"            android:gravity="center"            android:text="Score: 430"            android:textColor="#000"            android:textSize="18dp" /></LinearLayout></RelativeLayout>
查看完整描述

2 回答

?
慕哥6287543

TA貢獻1831條經(jīng)驗 獲得超10個贊

你可以只用RelativeLayout來修復你的視圖


<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout android:layout_width="match_parent"

    android:layout_height="match_parent"

    xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:app="http://schemas.android.com/apk/res-auto">

    <ImageView

        android:id="@+id/imageView"

        android:layout_width="33dp"

        android:layout_height="27dp"

        android:layout_marginStart="16dp"

        android:layout_marginTop="16dp"

        android:layout_alignParentStart="true"

        app:srcCompat="@drawable/ic_round_close" />

        <TextView

            android:layout_marginTop="16dp"

            android:id="@+id/imageView2"

            android:layout_height="wrap_content"

            android:layout_width="wrap_content"

            android:background="@drawable/timer"

            android:layout_centerHorizontal="true"

            android:text="15s"

            android:textSize="20sp"

            android:textColor="#3B3B3B"

            android:textStyle="bold" />

    <TextView

        android:layout_alignParentEnd="true"

        android:id="@+id/textView"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_marginTop="16dp"

        android:layout_marginEnd="16dp"

        android:gravity="center"

        android:text="Score: 430"

        android:textColor="#000"

        android:textSize="18sp" />

</RelativeLayout>

https://img1.sycdn.imooc.com//6513ca16000183fb03890659.jpg

查看完整回答
反對 回復 2023-09-27
?
蝴蝶不菲

TA貢獻1810條經(jīng)驗 獲得超4個贊

weightSum您可以通過使用以下方法來實現(xiàn)此目的


<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:app="http://schemas.android.com/apk/res-auto"

    android:layout_width="match_parent"

    android:layout_height="wrap_content"

    android:orientation="horizontal"

    android:weightSum="1">


    <ImageView

        android:id="@+id/imageView"

        android:layout_width="0dp"

        android:layout_height="30dp"

        android:layout_weight=".2"

        app:srcCompat="@drawable/close_btn" />


    <TextView

        android:id="@+id/imageView2"

        android:layout_width="0dp"

        android:layout_height="wrap_content"

        android:layout_weight=".4"

        android:background="@drawable/timer"

        android:gravity="center"

        android:text="15s"

        android:textColor="#3B3B3B"

        android:textSize="20dp"

        android:textStyle="bold" />


    <TextView

        android:id="@+id/textView"

        android:layout_width="0dp"

        android:layout_height="wrap_content"

        android:layout_weight=".4"

        android:gravity="center"

        android:text="Score: 430"

        android:textColor="#000"

        android:textSize="18dp" />


</LinearLayout>

https://img1.sycdn.imooc.com//6513ca290001435106400316.jpg

https://img1.sycdn.imooc.com//6513ca3100016a3505391134.jpg

查看完整回答
反對 回復 2023-09-27
  • 2 回答
  • 0 關(guān)注
  • 133 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號