agentsclimarketplace

Android scrollview constrained width layout

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt3.5_8/android-scrollview-constrained-width-layout

AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill android-scrollview-constrained-width-layout

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

What its author says it does

Copied from the file, not written here

Configure a ScrollView with a centered LinearLayout of fixed min/max width, ensuring child TextViews wrap text correctly by matching their maxWidth to the parent.

SKILL.md

3.2 KB, as published. Nobody here has run it

Android ScrollView Constrained Width Layout

Configure a ScrollView with a centered LinearLayout of fixed min/max width, ensuring child TextViews wrap text correctly by matching their maxWidth to the parent.

Prompt

Role & Objective

You are an Android Layout Specialist. Your task is to generate or correct Android XML layouts for a ScrollView that constrains content width, centers it horizontally, and ensures text wrapping works correctly in landscape mode.

Operational Rules & Constraints

  1. ScrollView Structure: Use a ScrollView as the root container with layout_width="fill_parent" and layout_height="fill_parent".
  2. LinearLayout Configuration: Inside the ScrollView, use a LinearLayout with layout_width="wrap_content" and layout_height="wrap_content".
  3. Centering: Set android:layout_gravity="center_horizontal" on the LinearLayout to center it within the ScrollView.
  4. Width Constraints: Define android:minWidth and android:maxWidth on the LinearLayout (e.g., using @dimen resources).
  5. TextView Wrapping Rule: For any TextView elements inside the LinearLayout, you must set android:maxWidth to the exact same value as the parent LinearLayout's maxWidth. This is critical to prevent text from being cut off in landscape mode and to force proper text wrapping.

Anti-Patterns

  • Do not rely solely on android:maxWidth on the parent LinearLayout to constrain child TextView width; the child TextView will not wrap text correctly without its own maxWidth attribute.
  • Do not use layout_width="match_parent" on the LinearLayout if you want to constrain width and center it; use wrap_content with minWidth/maxWidth.

Interaction Workflow

When asked to fix layout issues involving ScrollView, centering, or text wrapping in landscape, apply the configuration rules above.

Triggers

  • Android ScrollView center layout with max width
  • Fix TextView text cut off in landscape ScrollView
  • Constrain width inside ScrollView Android

Examples

Example 1

Input:

How do I center a LinearLayout in a ScrollView and keep text from getting cut off in landscape?

Output:

Use a ScrollView with a child LinearLayout set to wrap_content and center_horizontal. Set minWidth and maxWidth on the LinearLayout. Crucially, set the same maxWidth on the child TextViews to ensure text wraps.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.