Android Studio应用仅显示白色背景和标题

时间:2019-09-02 13:59:39

标签: java android

在手机(三星)上安装APK后,我打开它,看到的只有白色背景和标题。它基本上是一个简单的浏览器。 当我在手机上打开应用程序时,它会打开手机的键盘,就像其中的元素一样,但被白色背景覆盖。

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    >

    <EditText
        android:id="@+id/editTextLink"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="Introdu aici site-ul.."
        android:layout_weight="9"
        android:fontFamily="sans-serif"
        android:textSize="22dp"

        />

    <Button
        android:id="@+id/btn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Accesează"
        android:fontFamily="sans-serif"
        android:textSize="20dp"
        android:background="@android:color/holo_blue_light"
        android:textColor="@android:color/white"
        />

</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="8">

</LinearLayout>

<WebView
    android:id="@+id/content"
    android:layout_width="415dp"
    android:layout_height="548dp"
    tools:layout_editor_absoluteX="-4dp"
    tools:layout_editor_absoluteY="62dp"></WebView>

和建立梯度:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.2"
    defaultConfig {
        applicationId "com.example.dambrowser"
        minSdkVersion 19
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.2.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}

0 个答案:

没有答案