- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我整晚都在寻找解决方案.. 但我似乎找不到适合我的代码的解决方案 :S。我的 fragment 在旋转时被破坏,我知道我必须将它保存在一个包或其他东西中,但我太菜鸟了,无法让它工作。请帮忙,这是我的代码:
package com.remcoborst.mymovielibrary;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URI;
import java.net.URL;
import java.net.URLConnection;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.json.JSONArray;
import org.json.JSONObject;
import android.app.ActionBar;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.FragmentTransaction;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Color;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.net.Uri;
import android.os.AsyncTask;
import android.os.Bundle;
import android.os.StrictMode;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.view.ViewPager;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.LinearLayout.LayoutParams;
import android.widget.ListView;
import android.widget.TextView;
public class MainActivity extends FragmentActivity implements ActionBar.TabListener {
// #5781a9
SectionsPagerAdapter mSectionsPagerAdapter;
private static Context context;
ViewPager mViewPager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
MainActivity.context = getApplicationContext();
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(policy);
// Set up the action bar.
final ActionBar actionBar = getActionBar();
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
// Create the adapter that will return a fragment for each of the three
// primary sections of the app.
mSectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager());
// Set up the ViewPager with the sections adapter.
mViewPager = (ViewPager) findViewById(R.id.pager);
mViewPager.setAdapter(mSectionsPagerAdapter);
// When swiping between different sections, select the corresponding
// tab. We can also use ActionBar.Tab#select() to do this if we have
// a reference to the Tab.
mViewPager.setOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {
@Override
public void onPageSelected(int position) {
actionBar.setSelectedNavigationItem(position);
}
});
// For each of the sections in the app, add a tab to the action bar.
for (int i = 0; i < mSectionsPagerAdapter.getCount(); i++) {
actionBar.addTab(
actionBar.newTab().setText(mSectionsPagerAdapter.getPageTitle(i)).setTabListener(this)
);
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public void onTabSelected(ActionBar.Tab tab,
FragmentTransaction fragmentTransaction) {
// When the given tab is selected, switch to the corresponding page in
// the ViewPager.
mViewPager.setCurrentItem(tab.getPosition());
}
@Override
public void onTabUnselected(ActionBar.Tab tab,
FragmentTransaction fragmentTransaction) {
}
@Override
public void onTabReselected(ActionBar.Tab tab,
FragmentTransaction fragmentTransaction) {
}
/**
* A {@link FragmentPagerAdapter} that returns a fragment corresponding to
* one of the sections/tabs/pages.
*/
public class SectionsPagerAdapter extends FragmentPagerAdapter {
public SectionsPagerAdapter(FragmentManager fm) {
super(fm);
}
@Override
public Fragment getItem(int position) {
// getItem is called to instantiate the fragment for the given page.
// Return a DummySectionFragment (defined as a static inner class
// below) with the page number as its lone argument.
if(position == 0){
// My Movies class
Fragment fragment = new MyMovies();
return fragment;
}else{
// Add Movies
Fragment fragment = new AddMovies();
return fragment;
}
}
@Override
public int getCount() {
// Show 3 total pages.
return 2;
}
@Override
public CharSequence getPageTitle(int position) {
Locale l = Locale.getDefault();
switch (position) {
case 0:
return "My Movies".toUpperCase(l);
case 1:
return "Add".toUpperCase(l);
}
return null;
}
}
/**
* A dummy fragment representing a section of the app, but that simply
* displays dummy text.
*/
public static class MyMovies extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
// Rootview is the fragment layout, fragment_main_dummy.xml in layouts
View rootView = inflater.inflate(R.layout.fragment_main_dummy, container, false);
return rootView;
}
}
/**
* A dummy fragment representing a section of the app, but that simply
* displays dummy text.
*/
public static class AddMovies extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
// Rootview is the fragment layout, fragment_main_dummy.xml in layouts
final View rootView = inflater.inflate(R.layout.fragment_form, container, false);
final LinearLayout listViewData = (LinearLayout) rootView.findViewById(R.id.listViewData);
// Create button
Button bt = (Button) rootView.findViewById(R.id.addmovie);
bt.setOnClickListener(new OnClickListener(){
@Override
public void onClick(View v) {
EditText inputfield = (EditText) rootView.findViewById(R.id.imdblink);
String sTitle = inputfield.getText().toString().trim().replace(' ', '+');
if(MainActivity.hasActiveInternetConnection(getActivity())){
try{
listViewData.removeAllViews();
LoadMovies LoadMovies = new LoadMovies(getActivity());
LoadMovies.execute("http://imdbapi.org/?title="+sTitle+"&type=json&plot=simple&limit=10&lang=en-US&release=simple&mt=M");
}catch(Exception e){
e.printStackTrace();
}
}else{
showWarning("No working internet connection found!","Please ensure that you have a working internet connection before searching for movies.",getActivity());
}
}
});
return rootView;
}
}
public static class LoadMovies extends AsyncTask<String, Void, List<LinearLayout>> {
private Context SubContext;
private ProgressDialog pd;
public LoadMovies(Context SubContext){
this.SubContext = SubContext;
}
@Override
protected void onPreExecute() {
pd = ProgressDialog.show(this.SubContext, "", "Loading. Please wait...", true);
}
@Override
protected List<LinearLayout> doInBackground(String... urls) {
StringBuilder builder = new StringBuilder(1000000);
List<LinearLayout> localArrayList = new ArrayList<LinearLayout>();
for (String url : urls) {
Log.v("URLS",url);
if(url != "" && url != null){
try {
HttpClient client = new DefaultHttpClient();
HttpGet request = new HttpGet(url);
HttpResponse response = client.execute(request);
InputStream in = response.getEntity().getContent();
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
String line = null;
while((line = reader.readLine()) != null)
{
builder.append(line);
}
in.close();
String sHtml = builder.toString();
// Change json slightly...
sHtml = "{ \"Movies\": "+sHtml+" }";
JSONObject json = new JSONObject(sHtml);
JSONArray jsa = json.getJSONArray("Movies");
for(int i = 0; i < jsa.length(); i++){
JSONObject c = jsa.getJSONObject(i);
if(c.has("poster")){
String sImageUrl = c.getString("poster");
try{
ImageView imdbimg = new ImageView(this.SubContext);
URL imgUrl = new URL(sImageUrl.replaceAll(" ", "%20"));
Bitmap bmp = BitmapFactory.decodeStream(imgUrl.openConnection().getInputStream());
imdbimg.setImageBitmap(bmp);
imdbimg.setAdjustViewBounds(true);
imdbimg.setMaxHeight(200);
imdbimg.setMaxWidth(135);
imdbimg.setPadding(0, 0, 20, 0);
LinearLayout dynLL1 = new LinearLayout(this.SubContext);
LinearLayout.LayoutParams LLparams1 = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);
dynLL1.setOrientation(LinearLayout.VERTICAL);
dynLL1.setLayoutParams(LLparams1);
TextView textView1 = new TextView(this.SubContext);
textView1.setTextColor(Color.parseColor("#000000"));
textView1.setTextSize(18);
textView1.setPadding(0, 10, 20, 10);
textView1.setText(c.getString("title"));
TextView textView2 = new TextView(this.SubContext);
textView2.setText("Year: "+c.getString("year"));
JSONArray aRuntime = c.getJSONArray("runtime");
TextView textView3 = new TextView(this.SubContext);
textView3.setText("Length: "+aRuntime.getString(0));
dynLL1.addView(textView1);
dynLL1.addView(textView2);
dynLL1.addView(textView3);
LinearLayout dynLL2 = new LinearLayout(this.SubContext);
LinearLayout.LayoutParams LLparams2 = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);
LLparams2.setMargins(20, 20, 20, 20);
dynLL2.setOrientation(LinearLayout.HORIZONTAL);
dynLL2.setLayoutParams(LLparams2);
dynLL2.setBackgroundColor(Color.parseColor("#ffffff"));
dynLL2.addView(imdbimg);
dynLL2.addView(dynLL1);
localArrayList.add(dynLL2);
}catch(Exception e){
e.printStackTrace();
}
}
};
} catch (Exception e) {
e.printStackTrace();
}
}
}
return localArrayList;
}
@Override
protected void onPostExecute(List<LinearLayout> localArrayList) {
LinearLayout listViewData = (LinearLayout) ((Activity) this.SubContext).findViewById(R.id.listViewData);
for (final LinearLayout dynLL : localArrayList) {
listViewData.addView(dynLL);
}
pd.dismiss();
}
}
public static boolean hasActiveInternetConnection(Context SubContext) {
if (isNetworkAvailable(SubContext)) {
try {
HttpURLConnection urlc = (HttpURLConnection) (new URL("http://www.google.com").openConnection());
urlc.setRequestProperty("User-Agent", "Test");
urlc.setRequestProperty("Connection", "close");
urlc.setConnectTimeout(1500);
urlc.connect();
return (urlc.getResponseCode() == 200);
} catch (IOException e) {
Log.e("ERROR: ", "Error checking internet connection", e);
}
} else {
Log.d("ERROR: ", "No network available!");
}
return false;
}
private static boolean isNetworkAvailable(Context SubContext) {
ConnectivityManager connectivityManager = (ConnectivityManager) SubContext.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo activeNetworkInfo = connectivityManager.getActiveNetworkInfo();
return activeNetworkInfo != null;
}
public static void showWarning(String title, String mymessage,Context context)
{
new AlertDialog.Builder(context)
.setMessage(mymessage)
.setTitle(title)
.setCancelable(true)
.setIcon(R.drawable.warning)
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
//do things
}
})
.show();
}
}
最佳答案
这些可能是一个很长的答案,但最好阅读 Fragments 的 fragment 部分。
一个清理问题的建议是使用接口(interface)从 fragment 回调到 Activity 以运行 AsyncTask。将 fragment 保存在一个单独的类中。然后我会发送一个 Intent 或返回一个 ArrayList,其中 ofMoviedata 实现了 Parcelable。将该列表保存在 MainActivity 的 onSaveInstance 回调中,为 ArrayList 附加一个额外的内容。在同一个地方保存您的 ViewPager 选定索引的位置。
所以在你的 @覆盖 onCreate(Bundle savedInstancestate){ //你可以检查 如果(savedInstanceState == null){ //意味着新负载做你的初始化工作
}else{
//means orientation change grab the stuff you want saved to recreate the UI
if(savedInstanceState.containsKey(EXTRA_LIST){
mList = savedInstanceState.getParcelableArrayList(EXTRA_LIST)
}
if(savedInstancestate.containsKey(EXTRA_INDEX){
this.mDisplayedIndex = savedInstanceState.getInt(EXTRA_DISPLAYED_INDEX);
}
}
你的 onSaveInstanceState 看起来像下面这样:
@Override
protected void onSaveInstanceState(Bundle outState){
outState.putInt(EXTRA_DISPLAYED_INDEX, mDisplayedIndex);
outState.putParcelableArrayList(EXTRA_APPS_LIST, mList);
super.onSaveInstanceState(outState);
}
这是处理方向变化的一些基本内容。查看此以获得在方向更改期间实际保存 fragment 的更好答案。 another answer对不起,我不能帮助更多必须回去工作。但我希望这能帮助您顺利上路。
关于android - fragment 动态 View 在旋转时消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17003452/
在 JavaScript 中,我们可以动态创建 元素并附加到 部分,以便为大量元素应用 CSS 规则。 这种方法的优点或缺点是什么? 如果它确实提供了与元素上的 javascript 迭代相比的性
我有这个代码 import "./HTTPMethod.dart"; import '../../DataModel/DataModel.dart'; mixin RouterMixin { HT
哪些 OLAP 工具支持动态、动态地创建维度或层次结构? 例如,层次结构将成员定义为:“前 5 名”、“前 6-10 名”、“其他”... 计算成员是通常的答案,我正在寻找不同的东西。计算器的问题。成
我正在 CakePHP 中创建一个“表单编辑器”。 该界面允许用户选择要应用于字段的验证,例如数字、电子邮件等 因此,我需要根据用户输入为模型动态创建验证。为此,我可以使用验证对象:https://b
这是一个场景: 我有一个Web服务,我们将其称为部署在tomcat(轴)上的StockQuoteService。通过此 Web 服务公开了 getStockQuote() 方法。 现在,我想构建一个
我正在尝试从服务器获取 JSON 响应并将其输出到控制台。 Future login() async { var response = await http.get( Uri.
我从另一个问题中得到了这段代码(感谢 chunhunghan)。我需要创建一个登录屏幕,并尝试根据服务器发回给我的响应来验证用户凭据,但是每次我尝试运行代码时,它都会给我“未处理的异常:Interna
当我在“Dart”主程序中运行它时,一切正常,并且我得到了一个与会者列表。但是,当我在我的 Flutter 应用程序中调用它时,出现错误: flutter:“List”类型不是“List>”类型的子类
本文实例为大家分享了js实现验证码动态干扰的具体代码,供大家参考,具体内容如下 效果一 效果二 代码一 ?
目前我正在为我的网站使用 No-Ip,我想使用 cloudflare 来抵御 ddos 和机器人程序。我注意到您需要一个用于 cloudflare 的域。我还搜索了网络,发现了一个叫做 cloud
有没有办法在 Excel VBA 中构建动态 if 语句?基本上我正在尝试创建一个参数化计算,用户将能够输入不同的变量,即 变量 1 “变量 2” “变量 3” 在这种情况下 变量 1 是单元格引用
大家好, 请查看上面的图片,我有两张 table 。在下面代码的第一个表中,我得到了这种格式。 但我想像 Table2 那样格式化,每个合并单元格中的行数是动态的,而且不一样。 有没有办法像table
如何根据我添加的 View 修改标题部分的高度?heightForHeaderInSection在 viewForHeaderInSection 之前被调用我不知道 View 大小,直到我创建它。 最
是否存在在运行时生成 AST/解析树的解析器?有点像一个库,它会接受一串 EBNF 语法或类似的东西并吐出数据结构? 我知道 antlr、jlex 和他们的同类。他们生成可以做到这一点的源代码。 (喜
我在持有汽车制造商的表格上有一个 MultipleChoiceField。我想将我的汽车数据库过滤到已检查的品牌,但这会导致问题。如何动态获取所有 Q(make=...) 语句? 我如何开始:['va
$end = preg_replace($pattern, $replacement, $str); 如何使替换字符串 $replacement 随 $str 中的每次匹配而变化?例如,我想用关联的图
我正在编写一个 VBA 程序,用于过滤表中的值。我试图使其成为一个适用于您提供的所有表格的通用程序。在我的程序中,我必须设置它正在过滤的表的范围:Set rng = dataSheet.Range("
我正在循环一个元素数组,并且我想使用给定的模板递归地显示该元素 然后在该模板内使用带有切换功能的按钮来显示/隐藏给定元素的Child的更深级别模板(Child也是一个元素) 这是我的模板
从客户端(html)发送表单,服务器端通过选择选项之一决定运行哪个函数。 const decideWho = (form) => { const choice = form.choice; c
我有一个具有以下属性的按钮: circle_normal.xml(在 res/drawable 中) circle.xml(在 res/drawable 中)
我是一名优秀的程序员,十分优秀!