Latest changes
This commit is contained in:
parent
4116fe0867
commit
024d63efa3
@ -5,5 +5,9 @@
|
||||
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
|
||||
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
|
||||
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
|
||||
<classpathentry combineaccessrules="false" exported="true" kind="src" path="/HorizontalListViewLibrary"/>
|
||||
<classpathentry combineaccessrules="false" exported="true" kind="src" path="/android-support-v7-appcompat"/>
|
||||
<classpathentry combineaccessrules="false" exported="true" kind="src" path="/android-support-v7-gridlayout"/>
|
||||
<classpathentry combineaccessrules="false" exported="true" kind="src" path="/android-support-v7-mediarouter"/>
|
||||
<classpathentry kind="output" path="bin/classes"/>
|
||||
</classpath>
|
||||
|
Binary file not shown.
@ -12,4 +12,7 @@
|
||||
|
||||
# Project target.
|
||||
target=android-20
|
||||
android.library.reference.1=../appcompat_v7
|
||||
android.library.reference.1=..\\HorizontalListViewLibrary
|
||||
android.library.reference.2=../android-support-v7-appcompat
|
||||
android.library.reference.3=../android-support-v7-gridlayout
|
||||
android.library.reference.4=../android-support-v7-mediarouter
|
||||
|
BIN
android/res/drawable/test_investagency.png
Normal file
BIN
android/res/drawable/test_investagency.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 60 KiB |
@ -8,7 +8,17 @@
|
||||
<ListView
|
||||
android:id="@+id/listView"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" >
|
||||
android:layout_height="wrap_content"
|
||||
android:visibility="gone" >
|
||||
|
||||
</ListView>
|
||||
|
||||
<it.sephiroth.android.library.widget.HListView
|
||||
android:id="@+id/hListView1"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="200dip"
|
||||
android:paddingTop="20dip"
|
||||
android:paddingBottom="20dip"
|
||||
android:background="#11000000" />
|
||||
|
||||
</LinearLayout>
|
||||
|
@ -24,7 +24,6 @@
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:layout_margin="5dp" >
|
||||
|
||||
<ImageView
|
||||
@ -44,7 +43,6 @@
|
||||
android:layout_margin="5dp"
|
||||
android:text="TextView"
|
||||
android:visibility="gone" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
@ -54,4 +52,34 @@
|
||||
android:layout_margin="5dp"
|
||||
android:text="TextView" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/LinearLayout1"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="5dp"
|
||||
android:orientation="vertical" >
|
||||
|
||||
<Button
|
||||
android:id="@+id/button1"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:text="Button" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/button2"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:text="Button" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/button3"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:text="Button"
|
||||
android:visibility="visible" />
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
@ -20,6 +20,7 @@ import android.widget.ArrayAdapter;
|
||||
import android.widget.TextView;
|
||||
|
||||
|
||||
|
||||
public class MainActivity extends ActionBarActivity {
|
||||
|
||||
|
||||
@ -36,6 +37,8 @@ public class MainActivity extends ActionBarActivity {
|
||||
getSupportFragmentManager().beginTransaction().add(R.id.fragment_proto_container, new WelcomeFragment()).commit();
|
||||
|
||||
instance = this;
|
||||
|
||||
it.sephiroth.android.library.widget.HListView hx;
|
||||
|
||||
}
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
package fishrungames.bashgid;
|
||||
|
||||
import it.sephiroth.android.library.widget.HListView;
|
||||
import android.content.Context;
|
||||
import android.os.Bundle;
|
||||
import android.support.v4.app.Fragment;
|
||||
@ -18,6 +19,8 @@ public class SemiDetailsFragment extends Fragment {
|
||||
|
||||
|
||||
ListView semidetailsGridView;
|
||||
|
||||
HListView hListView;
|
||||
|
||||
@Override
|
||||
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
||||
@ -26,6 +29,10 @@ public class SemiDetailsFragment extends Fragment {
|
||||
semidetailsGridView = (ListView) rootView.findViewById(R.id.listView);
|
||||
|
||||
semidetailsGridView.setAdapter(new SemidetailsAdapter(getActivity()));
|
||||
|
||||
hListView = (HListView) rootView.findViewById(R.id.hListView1);
|
||||
|
||||
hListView.setAdapter(new SemidetailsAdapter(getActivity()));
|
||||
|
||||
return rootView;
|
||||
}
|
||||
@ -41,7 +48,7 @@ public class SemiDetailsFragment extends Fragment {
|
||||
}
|
||||
|
||||
public int getCount() {
|
||||
return 2;
|
||||
return 3;
|
||||
}
|
||||
|
||||
public Object getItem(int position) {
|
||||
@ -75,6 +82,10 @@ public class SemiDetailsFragment extends Fragment {
|
||||
|
||||
TextView footerTextView = (TextView)view.findViewById(R.id.footerTextView);
|
||||
|
||||
Button button1 = (Button)view.findViewById(R.id.button1);
|
||||
Button button2 = (Button)view.findViewById(R.id.button2);
|
||||
Button button3 = (Button)view.findViewById(R.id.button3);
|
||||
|
||||
if (position == 0)
|
||||
{
|
||||
headerTextView.setVisibility(View.VISIBLE);
|
||||
@ -93,16 +104,25 @@ public class SemiDetailsFragment extends Fragment {
|
||||
|
||||
imageTextView.setVisibility(View.GONE);
|
||||
|
||||
footerTextView.setText("");
|
||||
footerTextView.setText("Информация предоставлена Министерством промышленности и инновационной политики республики Башкортостан");
|
||||
|
||||
button1.setText("Статистика по отраслям...");
|
||||
button1.setVisibility(View.VISIBLE);
|
||||
|
||||
button2.setText("Поиск...");
|
||||
button2.setVisibility(View.VISIBLE);
|
||||
|
||||
button3.setVisibility(View.GONE);
|
||||
|
||||
|
||||
}
|
||||
else
|
||||
else if (position == 1)
|
||||
{
|
||||
headerTextView.setVisibility(View.VISIBLE);
|
||||
headerTextView.setText("УМПО");
|
||||
headerTextView.setText("Предприятие дня");
|
||||
|
||||
subHeaderTextView.setVisibility(View.VISIBLE);
|
||||
subHeaderTextView.setText("Стремимся к вершинам!");
|
||||
subHeaderTextView.setText("Уфимское моторостроительное производственное объединение");
|
||||
|
||||
imageView.setImageResource(R.drawable.test_umpo);
|
||||
|
||||
@ -114,7 +134,44 @@ public class SemiDetailsFragment extends Fragment {
|
||||
imageTextView.setVisibility(View.VISIBLE);
|
||||
imageTextView.setText("УМПО - российское предприятие, производитель авиационных двигателей. Основано в 1925 году. В объединении работают более 15 тысяч человек.");
|
||||
|
||||
footerTextView.setText("Нажмите сюда для подробностей");
|
||||
footerTextView.setText("Информация предоставлена пресс-службой УМПО");
|
||||
|
||||
button1.setText("Информация о предприятии...");
|
||||
button1.setVisibility(View.VISIBLE);
|
||||
|
||||
button2.setText("Продукция...");
|
||||
button2.setVisibility(View.VISIBLE);
|
||||
|
||||
button3.setText("Контакты...");
|
||||
button3.setVisibility(View.VISIBLE);
|
||||
}
|
||||
else
|
||||
{
|
||||
headerTextView.setVisibility(View.VISIBLE);
|
||||
headerTextView.setText("Информационная поддержка инвестора");
|
||||
|
||||
subHeaderTextView.setVisibility(View.VISIBLE);
|
||||
subHeaderTextView.setText("С чего начать? Пошаговое руководство и ответы на вопросы");
|
||||
|
||||
imageView.setImageResource(R.drawable.test_investagency);
|
||||
|
||||
LayoutParams params = imageView.getLayoutParams();
|
||||
params.width = 200;
|
||||
imageView.setLayoutParams(params);
|
||||
|
||||
|
||||
imageTextView.setVisibility(View.VISIBLE);
|
||||
imageTextView.setText("Специалисты агентства подготовили справочник, в котором вы узнаете ответы на все юридические вопросы, которые могут возникнуть при инвестировании в предприятия Республики Башкортостан");
|
||||
|
||||
footerTextView.setText("Агентство по привлечению инвестиций Республики Башкортостан");
|
||||
|
||||
button1.setText("С чего начать...");
|
||||
button1.setVisibility(View.VISIBLE);
|
||||
|
||||
button2.setText("Часто задаваемые вопросы...");
|
||||
button2.setVisibility(View.VISIBLE);
|
||||
|
||||
button3.setVisibility(View.GONE);
|
||||
}
|
||||
|
||||
//Button button = (Button) view.findViewById(R.id.teaserElement);
|
||||
|
Loading…
Reference in New Issue
Block a user