- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试修改此代码以满足我的需要:http://udinic.wordpress.com/2011/09/03/expanding-listview-items/
我想更改它,以便根据用户的选择显示不同的 TextView。我意识到,使用 if 子句,它似乎工作正常,显然。之后我想动态更改 TextViews 的文本,但失败了。 setText 仅适用于第一项。第二个始终显示 XML 中设置的静态文本 ...
谢谢!
ListView 上的监听器:
list.setOnItemClickListener(new AdapterView.OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, final View view, int position, long id) {
((TextView) findViewById(R.id.title1)).setText("Custom1");
((TextView) findViewById(R.id.title2)).setText("Custom2");
String selectedFromList =(String) (list.getItemAtPosition(position));
if (selectedFromList.equals("udini1")) {
View toolbar1 = view.findViewById(R.id.toolbar1);
// Creating the expand animation for the item
ExpandAnimation expandAni1 = new ExpandAnimation(toolbar1, 500);
// Start the animation on the toolbar
toolbar1.startAnimation(expandAni1);
}
if (selectedFromList.equals("udini2")) {
View toolbar2 = view.findViewById(R.id.toolbar2);
// Creating the expand animation for the item
ExpandAnimation expandAni2 = new ExpandAnimation(toolbar2, 500);
// Start the animation on the toolbar
toolbar2.startAnimation(expandAni2);
}
}
});
}
list_item.xml
<LinearLayout android:id="@+id/toolbar1"
android:layout_marginBottom="-50dip"
android:visibility="gone"
android:layout_height="50dip"
android:layout_width="fill_parent">
<TextView android:id="@+id/title1"
android:padding="20dip"
android:focusable="false"
android:focusableInTouchMode="false"
android:layout_width="fill_parent"
android:text="Dummy1"
android:layout_height="wrap_content"/>
</LinearLayout>
<LinearLayout android:id="@+id/toolbar2"
android:layout_marginBottom="-50dip"
android:visibility="gone"
android:layout_height="50dip"
android:layout_width="fill_parent">
<TextView android:id="@+id/title2"
android:padding="20dip"
android:focusable="false"
android:focusableInTouchMode="false"
android:layout_width="fill_parent"
android:text="Dummy2"
android:layout_height="wrap_content"/>
</LinearLayout>
自定义列表适配器:
class CustomListAdapter extends ArrayAdapter<String> {
public CustomListAdapter(Context context, int textViewResourceId) {
super(context, textViewResourceId);
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if (convertView == null) {
convertView = getLayoutInflater().inflate(R.layout.list_item, null);
}
((TextView)convertView.findViewById(R.id.title)).setText(getItem(position));
// Resets the toolbar to be closed
View toolbar = convertView.findViewById(R.id.toolbar1);
((LinearLayout.LayoutParams) toolbar.getLayoutParams()).bottomMargin = -50;
toolbar.setVisibility(View.GONE);
return convertView;
}
}
动画类:
public class ExpandAnimation extends Animation {
private View mAnimatedView;
private LayoutParams mViewLayoutParams;
private int mMarginStart, mMarginEnd;
private boolean mIsVisibleAfter = false;
private boolean mWasEndedAlready = false;
/**
* Initialize the animation
* @param view The layout we want to animate
* @param duration The duration of the animation, in ms
*/
public ExpandAnimation(View view, int duration) {
setDuration(duration);
mAnimatedView = view;
mViewLayoutParams = (LayoutParams) view.getLayoutParams();
// decide to show or hide the view
mIsVisibleAfter = (view.getVisibility() == View.VISIBLE);
mMarginStart = mViewLayoutParams.bottomMargin;
mMarginEnd = (mMarginStart == 0 ? (0- view.getHeight()) : 0);
view.setVisibility(View.VISIBLE);
}
@Override
protected void applyTransformation(float interpolatedTime, Transformation t) {
super.applyTransformation(interpolatedTime, t);
if (interpolatedTime < 1.0f) {
// Calculating the new bottom margin, and setting it
mViewLayoutParams.bottomMargin = mMarginStart
+ (int) ((mMarginEnd - mMarginStart) * interpolatedTime);
// Invalidating the layout, making us seeing the changes we made
mAnimatedView.requestLayout();
// Making sure we didn't run the ending before (it happens!)
} else if (!mWasEndedAlready) {
mViewLayoutParams.bottomMargin = mMarginEnd;
mAnimatedView.requestLayout();
if (mIsVisibleAfter) {
mAnimatedView.setVisibility(View.GONE);
}
mWasEndedAlready = true;
}
}
}
最佳答案
尝试改变
((TextView) findViewById(R.id.title1)).setText("Custom1");
((TextView) findViewById(R.id.title2)).setText("Custom2");
对此
((TextView) view.findViewById(R.id.title1)).setText("Custom1");
((TextView) view.findViewById(R.id.title2)).setText("Custom2");
您当前拥有的行仅获取 ID 为 title1 和 title2 的第一个 View 。使用给定的 view
按 id 查找 View ,您将获得第一个 id title1 的 View inside 被点击的 View 。
关于java - TextView setText 在 LinearLayout 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15002579/
我有一个 LinearLayout,上面有几个 View 。所以我想要实现的是复制这个 LinearLayout 并在某个时候使用它。但是,当我对原始 LinearLayout 执行更改(例如方法 r
我试着做一个像这样的简单布局 仅显示第一个 TextView(“hello”)。我做错了什么? 最佳答案 制作内部布局wrap_content的l
我想构建某种 Twitter 应用程序。在 DashboardActivity 中,我需要在每次单击“发布”按钮时添加一个状态框。我的仪表板 xml 如下所示: -->header
我试图在另一个 LinearLayout 中插入一个 LinearLayout。我不知道我的做法对不对。 我需要在不使用通货膨胀的情况下尝试这种方式。 LinearLayout addre
我的 Android UI 中只有一个 ImageView 和一个 TextView。目前 TextView 与 ImageView 在同一个 LinearLayout 中,因此文本有时会跑到 2 行
我正在尝试让“播放”图标的图像显示在我在 LinearLayout 中的列表项的右侧。 但是,由于某种原因,图像出现在
我有两个 LinearLayout 结构如下。 问题是第二个 LinearLayout (id=goi) 没有按预期显示。我尝试将顶部布局更改为 Relativ
我以编程方式创建了很多 LinearLayout 并将它们放在另一个 LinearLayout 上: public void loadList(){ LinearLayout linearLa
我想创建按钮 1 到 9,并且我想循环执行此操作。但在每 3 个计数中,我想创建一个新的 LinearLayout。 final LinearLayout[] ll2 = new LinearLa
我需要创建 X 个 linearLayout - 每个 linearLayout 包含文本(项目名称)、位图(项目位图图像)。 因此,我创建了一些 for 循环来创建动态 linearLayout 和
您好,我是 Android 开发的初学者。我制作了一个 LinearLayout 以美观的方式显示不同的信息。我想要一个带有 ScrollView 的屏幕,我可以在其中添加任意数量的 LinearLa
我是 Android 编程的新手,我正在尝试设置一个包含四个组件的 LinearLayout。 目前看起来是这样的: XML:
首先,这是我的 activity_main.xml 文件的结构: 相对布局 线性布局 fragment (谷歌地图) 线性布局 搜索栏 TextView 图片按钮 我试图将第二个线性布局(不包含 ma
我正在创建一个自定义复合布局,它由一个可点击的水平 LinearLayout 组成,其中包含一个 ImageView 和两个 TextView。最终,我希望能够使用单个字段引用整个内容,并根据用户 A
我在 main.xml 中有一个 LinearLayout: 我制作了另一个 XML 文件,名为 item_box.xml: 基本上,我想通过代码(以编程方式
我有一个 LinearLayout,它应该包含一个项目列表(每个项目都是一个 LinearLayout)。 问题是子项目 (LinearLayouts) 没有显示在另一个下面:只有第一个是可见的。 这
下午好 我正在尝试像这样进行倒计时: 为此,我制作了两个水平的 LinearLayout,一个用于数值,另一个放置在下方,用于标签,例如“DAYS”或“HOURS”。 我的目标是在数值中间对齐标签,如
我得到了这个应用程序(顺便说一句,它和完成的一样好),我需要在其中动态地将 LinearLayout View 添加到 LinearLayout 容器。它的工作方式是用户在 EditText 中写一些
在 Udacity Android 初学者类(class)之后,我想向 list_item View 添加一个音频图标按钮。现在 list_item.xml 有一个父级水平线性布局和一个嵌套的垂直线性
我得到了一个相对布局,其中包含另一个我用来替换“标题”的相对布局,一个稍后用作“控制面板”的线性布局,以及一个 horizontalScrollView,其中 horizontalScroll
我是一名优秀的程序员,十分优秀!