Код: Выделить всё
int name = data.getIntExtra("napravlenie", 1);
((ScrollView) findViewById(R.id.scroll_Times)).setVisibility(View.GONE);
((ScrollView) findViewById(R.id.Scroll_Dlina)).setVisibility(View.GONE);
((ScrollView) findViewById(R.id.Scroll_Massa)).setVisibility(View.GONE);
((ScrollView) findViewById(R.id.Scroll_Temp)).setVisibility(View.GONE);
((ScrollView) findViewById(R.id.Scroll_Obem)).setVisibility(View.GONE);
((ScrollView) findViewById(R.id.Scroll_energiy)).setVisibility(View.GONE);
((ScrollView) findViewById(R.id.Scroll_moshnost)).setVisibility(View.GONE);
((ScrollView) findViewById(R.id.Scroll_ploshad)).setVisibility(View.GONE);
((ScrollView) findViewById(R.id.Scroll_davlenie)).setVisibility(View.GONE);
((ScrollView) findViewById(R.id.Scroll_speed)).setVisibility(View.GONE);
((ScrollView) findViewById(R.id.Scroll_elenergy)).setVisibility(View.GONE);
((ScrollView) findViewById(R.id.Scroll_Chisla)).setVisibility(View.GONE);
if (name == 1) {
((ScrollView) findViewById(R.id.Scroll_Dlina)).setVisibility(View.VISIBLE);
((TextView) findViewById(R.id.textHeader)).setText(R.string.length);
}
if (name == 2) {
((ScrollView) findViewById(R.id.Scroll_Massa)).setVisibility(View.VISIBLE);
((TextView) findViewById(R.id.textHeader)).setText(R.string.massa);
}
if (name == 3) {
((ScrollView) findViewById(R.id.Scroll_Temp)).setVisibility(View.VISIBLE);
((TextView) findViewById(R.id.textHeader)).setText(R.string.temperature);
}
if (name == 4) {
((ScrollView) findViewById(R.id.scroll_Times)).setVisibility(View.VISIBLE);
((TextView) findViewById(R.id.textHeader)).setText(R.string.times);
}
if (name == 5) {
((ScrollView) findViewById(R.id.Scroll_Obem)).setVisibility(View.VISIBLE);
((TextView) findViewById(R.id.textHeader)).setText(R.string.obem);
}
if (name == 6) {
((ScrollView) findViewById(R.id.Scroll_energiy)).setVisibility(View.VISIBLE);
((TextView) findViewById(R.id.textHeader)).setText(R.string.energiya);
}
if (name == 7) {
((ScrollView) findViewById(R.id.Scroll_moshnost)).setVisibility(View.VISIBLE);
((TextView) findViewById(R.id.textHeader)).setText(R.string.moshnost);
}
if (name == 8) {
((ScrollView) findViewById(R.id.Scroll_ploshad)).setVisibility(View.VISIBLE);
((TextView) findViewById(R.id.textHeader)).setText(R.string.ploshad);
}
if (name == 9) {
((ScrollView) findViewById(R.id.Scroll_davlenie)).setVisibility(View.VISIBLE);
((TextView) findViewById(R.id.textHeader)).setText(R.string.davlenie);
}
if (name == 10) {
((ScrollView) findViewById(R.id.Scroll_speed)).setVisibility(View.VISIBLE);
((TextView) findViewById(R.id.textHeader)).setText(R.string.speed);
}
if (name == 11) {
((ScrollView) findViewById(R.id.Scroll_elenergy)).setVisibility(View.VISIBLE);
((TextView) findViewById(R.id.textHeader)).setText(R.string.eltok);
}
if (name == 12) {
((ScrollView) findViewById(R.id.Scroll_Chisla)).setVisibility(View.VISIBLE);
((TextView) findViewById(R.id.textHeader)).setText(R.string.chisla);
}
}
Код: Выделить всё
LayoutInflater inflater = (LayoutInflater) this.getSystemService(LAYOUT_INFLATER_SERVICE);
View childLayout = inflater.inflate(R.layout.l_times, (ViewGroup) findViewById(R.layout.l_times));
((LinearLayout) findViewById(R.id.LinearLayout1)).addView(childLayout);
Код: Выделить всё
((EditText) findViewById(R.id.EditNanosec)).addTextChangedListener(new TextWatcher() {
пробовал ради теста сделать ...settext... для EditNanosec до LayoutInflater inflater ..... и после если до то ошибку выдает ... если после то норм с ним работает ...
так вот как мне быть ... как присобачить ети обработчики до добавления самих виевов ....