4

ListView 内に水平スクロール ビューを作成しようとしています。私はListViewを機能させていますが、水平スクロールビュー(HSV)内にデータを配置してもうまくいきません。お知らせ下さい!(私はリストビューをコーディングし、テストし、現在は水平スクロールビューを追加しようとしています)

HSV はすべての listitem に適用されます。

したがって、基本的に、これにどのようにアプローチしているかについての私のロジックについては、リストビューアダプターがあり、HSV をアダプター内に配置して、各 listItem をループし、その中に HSV を配置することにしました。

私のXmlは次のようになります:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:baselineAligned="false"
    android:layout_width="fill_parent" android:layout_height="fill_parent">
    <LinearLayout
    android:orientation="vertical"
    android:layout_width="0dip" android:layout_weight="1"
    android:layout_height="fill_parent">


        <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/txtProjectName" />

        <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/txtProjectDescription" />

        <HorizontalScrollView
            android:layout_width="wrap_content"
            android:layout_height="match_parent" >

            <LinearLayout 
                android:id="@+id/projectTasks"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:orientation="horizontal">
                <TextView 
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:id="@+id/txtProjectTasks" />

            </LinearLayout>

        </HorizontalScrollView>
    </LinearLayout>
</LinearLayout>

次に、すべてのプロジェクトを実行するカスタム アダプターを作成しました。

public class ProjectListAdapter extends ArrayAdapter<Projects> {

int resource;
String response;
Context context;
ArrayList<Tasks> taskArray = null;

// Initialize adapter
public ProjectListAdapter(Context context, int resource,
        List<Projects> items) {
    super(context, resource, items);
    this.resource = resource;

}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    LinearLayout projectView;

    // Get the current project object
    Projects project = getItem(position);
    //
    // Inflate the view
    if (convertView == null) {
        projectView = new LinearLayout(getContext());
        String inflater = Context.LAYOUT_INFLATER_SERVICE;
        LayoutInflater vi;
        vi = (LayoutInflater) getContext().getSystemService(inflater);
        vi.inflate(resource, projectView, true);
    } else {
        projectView = (LinearLayout) convertView;
    }

    TextView PROJECT_NAME = (TextView) projectView
            .findViewById(R.id.txtProjectName);
    TextView PROJECT_DESCRIPTION = (TextView) projectView
            .findViewById(R.id.txtProjectDescription);

    PROJECT_NAME.setText(project.getNAME());
    PROJECT_DESCRIPTION.setText(project.getDESCRIPTION());
    taskArray = new ArrayList<Tasks>();
    taskArray = (ArrayList<Tasks>) project.getTasks();

    for (Tasks tasks : taskArray) {
        HorizontalScrollView TASKS = (HorizontalScrollView) projectView
                .findViewById(R.id.projectTasks);
        LinearLayout taskLayout = (LinearLayout) projectView
                .findViewById(R.id.projectTasks);
        TextView taskTxt = (TextView) projectView
                .findViewById(R.id.txtProjectTasks);
        taskTxt.setText(tasks.getTASK_ID());
        taskLayout.addView(taskTxt);

    }
    return projectView;
}

}

コードの最後のビットは、HSV を作成するためにアダプターがループする場所ですが、何かがうまく機能していません。助けてください!

4

2 に答える 2

1

ListViewにHSVを含めるには、次のリンクをたどってください: http ://www.dev-smart.com/archives/34

また

@Override
public boolean onTouchEvent(MotionEvent event) {
    boolean handled = mGesture.onTouchEvent(event);
    return handled;
}
Then, add the following code which will decide to steal the event from the item children and give it to our onTouchEvent, or let it be handled by them.

@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
    switch( ev.getActionMasked() ){
        case MotionEvent.ACTION_DOWN:
             mInitialX = ev.getX();
             mInitialY = ev.getY();             
             return false;
        case MotionEvent.ACTION_MOVE:
             float deltaX = Math.abs(ev.getX() - mInitialX);
             float deltaY = Math.abs(ev.getY() - mInitialY);
             return ( deltaX > 5 || deltaY > 5 );
        default:
             return super.onInterceptTouchEvent(ev);
    }
}
Finally, don't forget to declare the variables in your class:

private float mInitialX;
private float mInitialY;

出典:AndroidのHorizo​​ntal ListView?

于 2012-12-04T05:54:44.200 に答える
0

コードでは、この行は問題ありません。新しいlinearLayoutを作成していますが、カスタムビューからのものではありません:

projectView = new LinearLayout(getContext());

だからこれを試してください:

View projectView = convertView;

// Inflate the view
if (projectView == null) {
    String inflater = Context.LAYOUT_INFLATER_SERVICE;
    LayoutInflater vi;
    vi = (LayoutInflater) getContext().getSystemService(inflater);
    projectView = vi.inflate(resource, false);
} 

また、projectView を LinearLayout ではなく View として定義します。

于 2012-12-04T06:04:01.130 に答える