rename list item class/layout to indicate more generic use

This commit is contained in:
eehouse 2010-03-14 05:01:33 +00:00
parent 78fb9e0092
commit 626a7e4a32
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<org.eehouse.android.xw4.PlayerView
<org.eehouse.android.xw4.XWListItem
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/player_view"
android:layout_width="fill_parent"

View file

@ -1,4 +1,4 @@
/* -*- compile-command: "cd ../../../../../; ant reinstall"; -*- */
/* -*- compile-command: "cd ../../../../../; ant install"; -*- */
package org.eehouse.android.xw4;
@ -6,10 +6,10 @@ import android.widget.TextView;
import android.content.Context;
import android.util.AttributeSet;
public class PlayerView extends TextView {
public class XWListItem extends TextView {
private int m_position;
public PlayerView( Context cx, AttributeSet as ) {
public XWListItem( Context cx, AttributeSet as ) {
super( cx, as );
}