При просмотре прокрутки в Android Studio не отображается никакого содержимого в эмуляторе или телефоне, хотя предварительный просмотр студии Android в порядке. Даже цвет фона отсутствует. Хотя я новичок в Android Studio, но я думаю, что все должно работать в этом коде, и поэтому я запутался.
Я прочитал несколько веток об этой проблеме, но ни одна из них не ответила на этот вопрос адекватно. В соответствии с этими ответами я попытался настроить параметры ширины и высоты и использовал линейное расположение в качестве корня, а также другие приемы, но без особого успеха. Тем не менее, я думаю, что линейный макет не блокирует просмотр прокрутки, и проблема заключается либо в этом XML-файле, либо где-то еще. Я пытался решить эту проблему, по крайней мере, два часа, но обращаюсь к более опытным разработчикам за советом.
Проблема заключалась в том, что у меня не было метода onCreate в файле Java.
<?xml version="1.0" encoding="utf-8"?>
<!--
<LinearLayout
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="vertical"
tools:context=".StartGame">
-->
<ScrollView
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:background="@drawable/background"
tools:context=".StartGame">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:text="@string/eka_teksti"
android:textAlignment="center"
android:textColor="#000"
android:layout_marginTop="2dp"/>
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:srcCompat="@mipmap/ic_launcher" />
</LinearLayout>
</ScrollView>
<!--
</LinearLayout>
-->
Вот соответствующий код Java
package com.jussitamminen.pplpankki;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.content.Intent;
import android.view.View;
public class StartGame extends AppCompatActivity {
}
И есть код манифеста также
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.jussitamminen.pplpankki">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".StartGame"
android:label="Second Activity"
android:parentActivityName=".MainActivity">
</activity>
</application>
</manifest>
Я ожидаю, что у прокрутки есть цвет фона и другое содержимое, как я определил.
здесь