まず、私はアンドロイドに新しいので、私は何か基本的なものを逃した場合私は謝罪します。Android Textviewスクロールの問題
いくつかの情報を保存するためにGridViewを作成しました。 GridViewは3x6グリッドで構成されています。各セルには、画像の下に画像とテキストがあります。 GridViewは非常に大きいので、私はスクロールバーを実装しています。
このページが正常にどのように見えるべきかで、最初にロード/選択したときである:
すべてが素敵に見える、私が一番下までスクロールして、バックアップしたときに、しかし、テキストが包むように見えますイメージを所定の位置から押し出します。なぜこれがわからないのですか?
これは私が下にスクロールしていると、彼らが戻るまでスクロールした後にページがどのように見えるかです:GridViewのため
、私はcontent_rewardsと呼ばれる非常に上部でのTextViewと一緒にGridViewコントロール自体にXMLファイルを持っています.xml。 relics_gridlayout.xmlというグリッド内の各ピクチャ/テキストのXMLファイルも作成しています。私はおそらく、これらのファイルのいずれかのTextViewsのプロパティが不足していると考えていますが、どのプロパティかどちらのプロパティがわからないのですか。グリッドやアダプタ自体とは関係がないとは思わないので、そのコードは含めません。
content_rewards.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
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:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:fitsSystemWindows="true"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="25dp">
<GridView
android:id="@+id/customgrid"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_below="@+id/os_texts"
android:columnWidth="100dp"
android:numColumns="auto_fit"
android:stretchMode="spacingWidthUniform"
android:verticalSpacing="35dp"
android:scrollbars="horizontal"
tools:layout_constraintTop_creator="1"
android:layout_marginTop="116dp"
tools:layout_constraintLeft_creator="1"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
<TextView
android:id="@+id/textView4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="B = 0 S = 0 G = 0"
android:textSize="24sp"
tools:layout_constraintRight_creator="1"
tools:layout_constraintBottom_creator="1"
app:layout_constraintBottom_toTopOf="@+id/customgrid"
app:layout_constraintRight_toRightOf="parent"
tools:layout_constraintLeft_creator="1"
android:layout_marginBottom="8dp"
app:layout_constraintLeft_toLeftOf="parent"/>
</android.support.constraint.ConstraintLayout>
relics_gridlayout.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="3dp">
<ImageView
android:id="@+id/os_images"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher" />
<TextView
android:layout_below="@+id/os_images"
android:id="@+id/os_texts"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="This is Just Dummy Text"
android:textAlignment="center"
android:textSize="18dp"
android:textStyle="bold"/>
</RelativeLayout>
すべてのヘルプは素晴らしいことです。ありがとう。
これはおそらくあなたが望む答えではありませんが、GridViewを使用しないことをお勧めします。私は、RecyclerViewをGridLayoutManagerとともに使用します。これはおそらく、ビューが飛び回っているという問題を回避するでしょう。 RecyclerViewは、Androidのどこでも使用されているため、まだ学習していない場合は、RecyclerViewを学ぶ良い機会です。人々はGridViewやListViewを使わない傾向があります。 –