從 mysqlite 資料庫中獲取的產品詳細資訊文本被推出螢屏。我看過其他有類似問題的帖子,但沒有使用 mysqlite(我不認為這是問題所在)。
當在 MainActivity 中單擊某個元素時,文本會顯示在打開的片段中。
我覺得我使用 LinearLayout 是正確的,因為它只是關于帶有提示的產品的詳細資訊。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ProductDescriptionFragment"
android:orientation="vertical">
<TextView
android:id="@ id/textview1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Product Fragment"
android:textSize="50dp" />
<TextView
android:id="@ id/txtViewProductNameFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Product Name: "
android:inputType="text" />
<TextView
android:id="@ id/txtViewProductPriceFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Product Price: "
android:inputType="text" />
<TextView
android:id="@ id/txtViewProductQuantityFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Product Quantity: "
android:inputType="text" />
<!-- This is the textView which is being pushed off the scrren -->
<TextView
android:id="@ id/txtViewProductDescriptionDetailedFragment"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:hint="Product Description: "
android:inputType="text" />
</LinearLayout>

uj5u.com熱心網友回復:
你的寬度應該是match_parent. wrap_content使您的觀點成為可以無限長的東西。改變:
<!-- This is the textView which is being pushed off the scrren -->
<TextView
android:id="@ id/txtViewProductDescriptionDetailedFragment"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:hint="Product Description: "
android:inputType="text" />
到
<!-- This is the textView which is being pushed off the scrren -->
<TextView
android:id="@ id/txtViewProductDescriptionDetailedFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Product Description: "
/>
轉載請註明出處,本文鏈接:https://www.uj5u.com/yidong/334734.html
標籤:安卓
